1

我创建了一个列表视图..在列表视图中我放了一个按钮..喜欢

<ul class="ui-listview">
 <li>
  <p>HEllo</p>
  <input type='button' id='btn1'>
  </li>

<li>
  <p>Hiii</p>
  <input type='button' id='btn2'>
  </li>
</ui>

现在我想要这个按钮的单击事件并停止列表视图的默认单击......那么它在 jquery 中怎么可能?

4

1 回答 1

1

$("input[type=button]").click(function(event){
    event.stopPropagation();
    //your code goes here
});

这是基于您的标记的 jsFiddle 。

于 2013-01-25T05:12:59.983 回答