此作品在Chrome中:event.preventDefault - 在Firefox中,沒有jQuery的
<a href="#" onclick="myFunction()">Aaa</a>
function myFunction() {
event.preventDefault();
//.........
,但在Firefox事件沒有定義。如何在不使用jquery的情況下在Firefox中使用它?
更新:
function myFunction(event) {
event.preventDefault();
}
如果它不被傳遞給它的onclick從如何將事件到來給myFunction?
'function myFunction(event){' – zerkms