单击jquery mobile中的复选框时如何停止点击传播?

时间:2015-03-12 16:20:32

标签: javascript jquery html jquery-mobile radio-button

在我的jquery移动应用程序中,我向listview添加了一行,整个行都有一个更改页面的click事件。在行中有许多列,其中一列是复选框。这是我在动态添加到DOM列表视图后初始化它的方法。

    var checkBoxes = $(context).find("#search-table").find(".custom-radio");

    checkBoxes.checkboxradio().prop("checked", false).checkboxradio( "refresh" );

    checkBoxes.parent().click(function(event) {
        event.stopPropagation();
        //return false;
    });

问题在于,如果单击该复选框,则会触发行单击事件。我想要它,以便它不会这样做。无论我尝试什么都不起作用。结果就像我单击复选框一样,它甚至不会改变状态,但行点击不会触发。

有谁知道如何解决这个问题?

由于

0 个答案:

没有答案