我在母版页中编写了以下代码
<script type="text/javascript">
if (window.location.pathname.contains('Page1.aspx')) {
var js = document.createElement("script");
js.type = "text/javascript";
js.src = 'http://code.jquery.com/jquery-1.8.3.js';
}
if (window.location.pathname.contains('Page2.aspx')) {
var js = document.createElement("script");
js.type = "text/javascript";
js.src = 'http://code.jquery.com/jquery-1.9.1.js';
}
</script>
在 asp.net 应用程序中,我有三个页面 page1、page2、page3,它们由同一个母版页继承。当我尝试访问 page3 时,它显示错误:“JavaScript 运行时错误:对象不支持属性或方法‘包含’”