input标签的focus事件失效?
input标签被其他标签包含,并且自身带了双击事件,此时的focus事件失效。
//阻止点击input时出现bug
for (var i=0; i<$(".endDataPL").length;i++ ){
$(".endDataPL").eq(i).click(function (e) {
e.stopPropagation();//阻止冒泡
})
}
我们只需获取input。在它的点击事件里面加上阻止冒泡事件就可以了。
$(el).click(function (e) {
e.stopPropagation();//阻止冒泡
})