所以我正在制作一个网站,并在页面中移动了一些脚本,突然之间,一些脚本停止在我的客户端 PC 上运行。我不得不做一些尝试,它终于奏效了,但我不知道是什么导致了问题。
这是它不工作时的结构
<html>
<head>
<script type='text/javascript' src='somepath/script/jquery.js'></script>
<script type='text/javascript'>
//some custom jquery script
</script>
</head>
<body>
....lots of stuff
</body>
</html>
<script type='text/javascript' src="sompath/some_jquery_plugin.js'></script>
<script type='text/javascript'>
//some custom jquery script
</script>
这是它工作时的结构
<html>
<head>
<script type='text/javascript' src='somepath/script/jquery.js'></script>
<script type='text/javascript'>
//some custom jquery script
</script>
</head>
<body>
....lots of stuff
</body>
</html>
<script type='text/javascript' src='somepath/script/jquery.js'></script>
<script type='text/javascript' src="sompath/some_jquery_plugin.js'></script>
<script type='text/javascript'>
//some custom jquery script
</script>
即注意最后包含的附加 jquery.js....
什么可能的原因导致了这种情况?特别是因为它在所有浏览器上都可以在我的系统上运行,但不能在我的客户端上运行。
** *更新* ** * **** 我认为 jquery 在中间某处停止工作......即我最后有这个脚本
$('#start').val('0000.00.00 00:00');
$('#end').val('0000.00.00 00:00');
但是带有“start”和“end” id 的字段没有显示给定的数据。因此需要额外包含 jquery。