<p onclick="play()">abc</p>
function play(){
do something;
}
上述工作如果JS代碼是在同一文件中p
但他說:
<script src="index.js"></script>
index.js
$(document).ready(function() {
function play() {
do something;
}
});
我得到的是ReferenceError: play is not defined
其他功能方面,除了play()
效果很好。
您是否嘗試刪除'$(document).ready(function(){});'如果javascript位於外部文件中? – Nunners
感謝大家。解決了 – bonaca