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

bug

时间:2017-12-20 13:36:57      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:body   event   win   事件   function   电脑   click   page   图片   

/*  $(document).on(‘click‘,‘.td_v‘,function () {
window.location.href = gPages[‘single‘]+‘&toneId=‘+$(this).attr(‘toneId‘);
})*/
/*  $(document).live(‘click‘,‘.td_v‘,function () {
window.location.href = gPages[‘single‘]+‘&toneId=‘+$(this).attr(‘toneId‘);
//适用于动态加载数据时,报错 jq1.7 已经弃用。
})*/

/* $(‘body‘).on(‘click‘, ‘.td_v‘, function(){
window.location.href = gPages[‘single‘]+‘&toneId=‘+$(this).attr(‘toneId‘);
// 更换本页面的src 不支持绑定动态添加的元素
});*/
/* $("body").delegate(".td_v","click",function(){
window.location.href = gPages[‘single‘]+‘&toneId=‘+$(this).attr(‘toneId‘);
alert("1")
//不会将event绑定到所有的ducoment上面,而是由你决定将他绑定在什么上面 没用过 测试在微信页面依旧不能实现点击效果
});*/

$(‘.td_v‘).click(function(){
window.location.href = gPages[‘single‘]+‘&toneId=‘+$(this).attr(‘toneId‘);
// 更换本页面的src
});
可能之前测试没测出来吧 微信页面不能点击跳转就看了下jq的几个点击事件
动态加载数据 上面的四种方法在ios微信端不能点击(电脑端可以点击),使用第五种直接绑定在元素上可以生效
jq css属性图片置灰
$(‘.img‘).css({‘filter‘: ‘grayscale(100%)‘,‘-webkit-filter‘:‘grayscale(100%)‘})

bug

标签:body   event   win   事件   function   电脑   click   page   图片   

原文地址:http://www.cnblogs.com/Kipper-liu/p/8072664.html

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