如何仅在手动切换翻转开关时触发事件



我创建了一个这样的jQuery Mobile翻转开关

<select id="flip" data-role="flipswitch">
    <option value="animal">Lion</option>
    <option value="flower">Rose</option>
</select>

我听这个翻转开关的变化

$( document ).on( 'change', '#flip', function( e ) {
   console.log( 'changed' );
}

但是如果我将翻转开关的值更改为

$( '#flip' ).val( 'flower' ).flipswitch( 'refresh' );

如何通过直接与翻转开关交互或设置值并刷新翻转开关来检查翻转开关是否已更改?

我在此 JSFiddle 下创建了一个不需要的行为示例。

您需要

使用 .on() 附加change事件,并在再次绑定之前.off()删除它 - 只要您动态更改值。

将所有

代码包装pagecreate事件中,它等同于.ready()

$(document).on("pagecreate", "#main", function () {
    /* change event handler */
    function flipChanged(e) {
        var id = this.id,
            value = this.value;
        console.log(id + " has been changed! " + value);
    }
    /* add listener - this will be removed once other buttons are clicked */
    $("#flip").on("change", flipChanged);
    $('#setlion').on('vclick', function (e) {
        $("#flip")
            .off("change") /* remove previous listener */
            .val('animal') /* update value */
            .flipswitch('refresh') /* re-enhance switch */
            .on("change", flipChanged); /* add listener again */
    });
    $('#setrose').on('vclick', function (e) {
        $("#flip")
            .off("change")
            .val('flower')
            .flipswitch('refresh')
            .on("change", flipChanged);
    });
});

演示

相关内容

  • 没有找到相关文章

最新更新