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

chrome下li标签onclick事件无效

时间:2016-11-26 02:42:39      阅读:475      评论:0      收藏:0      [点我收藏+]

标签:点击   ref   url   win   read   doc   bsp   事件   document   

 

//绑定事件

$(document).ready(function () { $("ul").children().click(function () { clickLi(this); }) });
//点击li标签跳转,根据li标签的url属性
function clickLi(obj) {
var liUrl= $(obj).attr("url");
if (liUrl) {
window.location.href = liUrl;
}

}

chrome下li标签onclick事件无效

标签:点击   ref   url   win   read   doc   bsp   事件   document   

原文地址:http://www.cnblogs.com/zinan/p/6103262.html

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