6
을 전환하는 경우에 jQuery를 모바일이는 내가 만든 방법 만 불 이벤트 flipswitch 수동으로
<select id="flip" data-role="flipswitch">
<option value="animal">Lion</option>
<option value="flower">Rose</option>
</select>
처럼 flipswitch 나는이 flipswitch
$(document).on('change', '#flip', function(e) {
console.log('changed');
}
변경 사항을 청취하지만 난 몰라 플립 스위치의 값을 변경하면 이벤트가 시작되기를 원합니다
$('#flip').val('flower').flipswitch('refresh');
플립스 백 ch는 직접적으로 상호 작용하거나 값을 설정하고 flipswitch를 새로 고침하여 변경되었습니다.
this JSFiddle에서 원하지 않는 동작의 예를 만들었습니다.
확인이 http://jsfiddle.net/Palestinian/ZPTPL/ 작동 – Omar
는 신속한 답변에 감사드립니다 – gaggi