0
我遇到了我的代碼問題。我試圖用來自html的元素形成一個數組。需要與我在html上輸入的元素形成一個數組
我的HTML是這樣的:
<h2>Write the name of a friend </h2>
<input id="friends" type="text"/> <input type="button" value="Add name" button onclick="enter()"/>
和我的jQuery是:
myArray =[];
function enter() {
var friend = $("#friends").val();
myArray.push(friend);
};
感謝
你不需要一些POST或GET來讀取值? – 5er
你還沒有解釋什麼問題是 – charlietfl
我不確定代碼是否有效。輸入名稱後如何查看數組? – user3093767