我將函數從html頁面移動到了包含的參考文件。它停止工作。將JavaScript函數移動到外部.js文件時停止工作
文件的完整內容是:
alert('file included');
function doAlert() {
alert('functions work');
}
在HTML頁面中,我有
<html>
<head><title>Page</title></head>
<body>
HTML Template Header
Some Content
ASP.NET MVC Partial View Starts
<script type="text/javascript">
doAlert();
</script>
ASP.NET MVC Partial View ends
HTML Template Footer
<script type="text/javascript" src="/Scripts/wtf.js"></script>
</body>
</html>
「文件包括」警報的作品,但「職能的工作」沒有。我究竟做錯了什麼?
啊,這顯然是我必須做的不對 – smartcaveman 2011-04-09 23:59:04