将事件“点击”到jquery.mobile时出现问题。当项目上的“点击”,然后项目被隐藏时,它会触发事件“焦点”在位于项目下方的INPUT字段。 如何才能使焦点事件不被触发? 这是一个小样本代码。
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<style>
.drop {
position: fixed;
left: 0;
top: 0;
width: 100%;
z-index: 100;
padding: 0 0 1px;
}
.drop .holder {
overflow: hidden;
padding: 10px 10px 3px;
margin: 0 24px -2px;
background: #1c365b;
}
a {font-size: 24px;}
</style>
</head>
<body>
<form action="#" id="form">
<input type="text" name="input 1">
<input type="text" name="input 2">
<input type="text" name="input 3">
</form>
<div class="drop">
<div class="holder">
<a>Link 1</a><br>
<a>Link 2</a><br>
<a>Link 3</a><br>
</div>
</div>
<div id="console"></div>
<script>
$(function () {
var console = $('#console');
$('.drop').find('a').unbind('tap').bind('tap', function (e) {
console.append(' tap on drop menu');
$('.drop').hide();
return false;
});
$('#form').find('input').unbind('focus').bind('focus', function (e) {
console.append(' focus on ' + $(e.target).attr('name'));
});
});
</script>
</body>
隐藏掉落之后,你得到:
<div id="console">tap on drop menu focus on input 2</div>
stopImmediatePropagation()方法无济于事。
答案 0 :(得分:0)
在JSFiddle中使用您的确切代码我没有遇到您遇到的问题。 我在桌面浏览器和Chrome浏览器的S3上试过这个。
重叠的div消失并触发点击事件但焦点事件不会触发,直到您在叠加层消失后选择其中一个输入框。
我更改的唯一代码是删除事件代码中不必要的方法。
$(function () {
var console = $('#console');
$('.drop').bind('tap', function (e) {
console.append(' tap on drop menu');
$('.drop').hide();
return false;
});
$('#form').find("input").bind('focus', function (e) {
console.append(' focus on ' + $(e.target).attr('name'));
});
});
答案 1 :(得分:0)
可能的解决方案是我需要在click事件(提供jquery)上替换tap事件(提供jquery.mobile)。
答案 2 :(得分:0)
我有完全相同的问题,我无法找到合适的解决方案。
我想这是Mobile Safari的一个问题,但你是我发现的第一个与我有同样问题的人。
临时解决方案是:禁用您想要隐藏在要点击的按钮下的所有字段。
在Sencha,它看起来像这样:
disableFields: function() {
this.enableFieldsFunc(); //lets make sure all fields were switched back to default values
this.disableAllFields(); //and then disable them
},
disableAllFields: function() {
fields = Ext.ComponentQuery.query('field');
for(var i = 0; i<fields.length; i++) {
var field = fields[i];
if(field.getComponent() && field.getComponent().input && field.getComponent().input.dom && field.getComponent().input.dom) {
field.wasDisabledBefore = field.getComponent().input.dom.disabled;
field.getComponent().input.dom.disabled = true;
}
}
},
enableFields: function() {
Ext.create('Ext.util.DelayedTask', this.enableFieldsFunc, this).delay(100);
},
enableFieldsFunc: function() {
fields = Ext.ComponentQuery.query('field');
for(var i = 0; i<fields.length; i++) {
var field = fields[i];
var disabled = field.wasDisabledBefore;
if(typeof disabled != 'undefined') {
field.getComponent().input.dom.disabled = disabled;
}
}
}
在紧急和已发布事件中,我正在调用 disableFields 和 enableFields