0
嗨即時得到錯誤「遺漏的類型錯誤:空的無法設置屬性的‘onClick’」我用盡屬性的onclick空的
- 包裝「的window.onload」在我的代碼
- 移動在腳本鏈接HTML在
我還沒有發現任何其他解決方案的在線頁面的頂部和底部,
這裏是我的HTML
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,700,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<div class="Contact">
Contact
<a class="a3">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<script src = "Script.js"></script>
</body>
</html>
這裏是我的JS
var arrowThree = document.getElementById("a3");
arrowThree.onclick = function(){
alert("You clicked on Contact");
};
當然,還有更多的我的JS,也是一個CSS文件,但它不
完美我看到我現在得到錯誤,謝謝:) –
沒問題!記得點擊勾號,讓未來的用戶知道這個答案工作! :d – millerbr