我正在使用bootstrap:
为什么在使用JQuery时不会使用下拉列表,但在复制和粘贴时确实有效?
这是我的代码:
....
<!--import Navigation bar html -->
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
$(function(){
$("#includedContent").load("navBar.html");
});
</script>
<!--end Navigation bar html -->
</head>
<body>
<div id="wrapper">
<!--import Navigation bar html -->
<div id="includedContent"></div>
<!-- /#pageWrapper location -->
....