码迷,mamicode.com
首页 > 其他好文 > 详细

jq+mui 阻止事件冒泡

时间:2017-12-18 12:12:12      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:view   class   post   ack   body   maximum   div   blog   imu   

 1 <!DOCTYPE html>
 2 <html>
 3     <head>
 4         <meta charset="UTF-8">
 5          <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
 6         <title></title>
 7         <link rel="stylesheet" href="../css/mui/mui.min.css" />
 8     </head>
 9     <body>
10         <ul class="mui-table-view">
11             <li class="mui-table-view-cell" id="text1">
12                 <button type="button" id="text2">测试</button>
13             </li>
14         </ul>
15     </body>
16 </html>
17 <script type="text/javascript" src="../js/mui.js" ></script>
18 <script src="../js/jQuery.js" type="text/javascript" charset="utf-8"></script>
19 <script type="text/javascript">
20     $("#text1").on("tap",function(){
21         console.log("11");
22     });
23     $("#text2").on("tap",function(event){
24         event.stopPropagation();
25         console.log("22");
26     })
27 </script>

 

jq+mui 阻止事件冒泡

标签:view   class   post   ack   body   maximum   div   blog   imu   

原文地址:http://www.cnblogs.com/xianxianxxx/p/8056282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!