我正在尝试在持久性固定标头中使用自定义选择菜单小部件(从演示中派生)。
没有selectmenu的第一页:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tryout</title>
<link rel="stylesheet" href="http://demos.jquerymobile.com/1.4.5/css/themes/default/jquery.mobile-1.4.5.min.css">
<link rel="stylesheet" href="http://demos.jquerymobile.com/1.4.5/_assets/css/jqm-demos.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<script src="http://demos.jquerymobile.com/1.4.5/js/jquery.js"></script>
<script src="http://demos.jquerymobile.com/1.4.5/_assets/js/index.js"></script>
<script src="http://demos.jquerymobile.com/1.4.5/js/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="header" data-position="fixed" data-theme="a">Header</div>
<div data-role="page">FooBar</div>
<script>
$(function(){ $( "[data-role='header']" ).toolbar(); });
</script>
</body>
</html>
这没关系,Header和FooBar出现是因为$(“[data-role ='header']”)。toolbar(); line(因为文档引用了它的存在)。
让我们用一个selectmenu替换“Header”文本(再次只有body部分):
<body>
<div data-role="header" data-position="fixed" data-theme="a">
<div class="ui-field-contain">
<label for="select-custom-1">Menu:</label>
<select name="select-custom-1" id="select-custom-1" data-native-menu="false">
<option value="0">Item1</option>
<option value="1">Item2</option>
</select>
</div>
</div>
<div data-role="page">FooBar</div>
<script>
$(function(){
$( "[data-role='header']" ).toolbar();
});
</script>
</body>
选择菜单显示但不起作用(对点击没有反应)。
删除$(“[data-role ='header']”)。toolbar();调用页面div隐藏标题。
删除$(“[data-role ='header']”)。toolbar();呼叫和页面div完全是selectmenu工作!
似乎$(“[data-role ='header']”)。toolbar(); call取消selectmenu的功能。但是需要使标题可见且持久。 我该如何解决这个问题?
谢谢!