我的级联下拉菜单在桌面浏览器和iPad上运行良好,但我真的只需要在iOS 7和Android上运行iPhone。问题出在iPhone上。如果我使用>导航到下一个下拉列表,则在第一个下拉列表中选择一个选项后按钮,它在ajax调用完成之前切换,所以我的下拉列表为空或仍然保持先前的选择。如果我点击完成,模糊事件就足以使其工作。
这是最简单的全功能示例:
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Cascading dropdowns" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<title>Cascade</title>
</head>
<body>
<div data-role="page" id="main">
<div data-role="header" class="jqm-header">
<h1>Cascade</h1>
</div>
<div data-role="content" >
<div data-role="fieldcontain">
<select name="agency" id="agency" >
<option value="actransit">AC Transit</option>
<option value="emery">Emeryville</option>
<option value="sf-muni">MUNI</option>
</select>
<select name="selectRoute" id="selectRoute"></select>
</div>
</div>
</div>
<script>
var nextBus = "http://webservices.nextbus.com/service/publicXMLFeed?";
function updateRoutes(agency) {
$.ajax({
type: "GET",
url: nextBus + "command=routeList&a=" + agency,
dataType: "xml",
success: function(xml) {
$("#selectRoute").children().remove();
$(xml).find('route').each(function(){
var tag = $(this).attr('tag');
var title = $(this).attr('title');
$('<option value="' + tag + '">' + title+ '</option>').appendTo("#selectRoute");
});
$("#selectRoute").selectmenu('refresh');
}
});
}
$().ready(function(){
$("#agency").blur (function (event)
{
var agency = $("#agency").val();
updateRoutes(agency);
});
});
</script>
</body>
</html>
在某些浏览器上,&gt;按Tab键可以模拟按钮。我已经尝试添加这个来延迟焦点变化,直到ajax完成之后:
$("#selectAgency").keypress (function(e) {
if (e.keyCode == 9) {
tabHappened = true;
updateRoutes($("#selectAgency").val());
e.preventDefault();
}
}
});
然后在填充下一个下拉列表后,调用:
if (tabHappened) {
tabHappened = false;
$("#selectRoute").focus();
}
但是,无论是按键,按键,还是我试过的其他几个似乎都没有触发,或者还有其他事情发生。我无法监控iPhone的Safari浏览器上发生的事件。我很欣赏任何有关使用iPhone上的快速导航按钮的见解。提前感谢您抽出时间来查看此内容。
答案 0 :(得分:1)
对ajax使用async = false将阻止所有后续事件触发,直到完成为止。见What does "async: false" do in jQuery.ajax()?