對於賦值我需要編寫一個代碼來按字母順序顯示數組並計算數組中的項。我可以做到這一點,但最後的要求是把JavaScript放到一個外部文件中。我該如何做到這一點?下面是我的代碼和我需要放在外部文件中,但我不知道如何做到這一點。如何將外部javascript文件放入我的html文檔?
這是最終的代碼,但我需要在腳本標記一切是在外部文件
<!DOCTYPE html>
<html>
<head></head>
<body>
<h2>Question 2 Array</h2>
<p id="array"></p>
<button onclick="alpha()">Sort alphabetically</button>
<button onclick="count()">Count items in array</button>
<script>
var products = [" Printer", " Tablet", " Router", " Keyboard", " Mouse", " PC"];
document.getElementById("array").innerHTML = products;
function alpha() {
document.getElementById("array").innerHTML = products.sort();
}
function count() {
document.getElementById("array").innerHTML = products.length;
}
</script>
</body>
</html>
只是將它縮小這裏的東西去外部。
var products = [" Printer", " Tablet", " Router", " Keyboard", " Mouse", " PC"];
document.getElementById("array").innerHTML = products;
function alpha() {
document.getElementById("array").innerHTML = products.sort();
}
function count() {
document.getElementById("array").innerHTML = products.length;
}
爲什麼你不真的學習JavaScript?這是一個網站,人們提出的問題在書籍,教程等方面都沒有答案。你顯然不知道使用這個網站的HTML和JavaScript差不多。你可以從這裏開始你的學習http://www.w3schools.com/ – Slavic
通過上面的javascript和html判斷,我認爲我學到了一些javascript和html。也許我無法在視頻或書籍中找到答案,並想要問某個人?你的評論根本沒有幫助。 – FearlessENT