我在Google Chrome中使用此腳本在頭文件中收到此錯誤。未捕獲的語法錯誤:意外令牌非法
你能幫我理解什麼是錯的嗎?
**Uncaught Syntax Error: Unexpected Token ILLEGAL**
<script>
$(document).ready(function() {
$('#DateTimeStart).datetimepicker();
});
</script>
我在Google Chrome中使用此腳本在頭文件中收到此錯誤。未捕獲的語法錯誤:意外令牌非法
你能幫我理解什麼是錯的嗎?
**Uncaught Syntax Error: Unexpected Token ILLEGAL**
<script>
$(document).ready(function() {
$('#DateTimeStart).datetimepicker();
});
</script>
首先,您應該指定腳本塊的類型,例如,
<script type='text/javascript'></script>
但是實際的問題是,在DateTimeStart後沒有第二個撇號,例如,
$('#DateTimeStart').datetimepicker();
編輯:刪除我的不好的建議:)
不太好的建議.. 。'language'屬性是[棄用](http://stackoverflow.com/a/112515/255756)。 –
哦,你知道嗎,我甚至沒有想過這個。將編輯。 –
你缺少結束引號
$(document).ready(function() {
$('#DateTimeStart').datetimepicker();
});
的代碼高亮應該已經告訴你,什麼是錯的...... –