我正在使用媒体查询创建响应式网页设计。对于移动版本,我使用 jquery mobile 的下拉菜单。
我已经包含了所需的 CDN 链接,包括 jquery-mobile.css。问题是这个 CSS 会自动应用于我整个网站的所有标签。
菜单栏位于母版页中,因此 .js 和 .css 源文件链接也在该页中。
我希望 jquery mobile css 仅应用于菜单栏而不是整个网站
我对此做了很多研究,但没有运气。从过去的三天开始,我一直被困在这里。有人可以帮帮我吗?
编辑:
<head id="Head1" runat="server">
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0,user-scalable=no,width=device-width,height=device-height" />
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script type="text/javascript">
$(document).bind('mobileinit',function(){
$.mobile.page.prototype.options.keepNative = "select, input, a, div, p";
});
</script>
<script src="../Scripts/jquery.mobile-1.2.0.js"></script>
<link rel="stylesheet" href="../Styles/WebStyles.css" type="text/css" />
<title>Management Software, Space Rental process for Antique Malls, POS Software</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</head>
这是在 Gajotres 建议后 head 标签中的内容。