我用一個(gè)簡(jiǎn)單的按鈕進(jìn)行 HTML 輸入。我的目標(biāo)是獲取 ID 為“esercizio08”的輸入值,并在單擊 W 時(shí)打印它。 <input id="esercizio08" name="test" type="text" value=""></input> <input type="button" value="..." id="button08"></input>________ let bottone = document.getElementById("button08"); bottone.addEventListener("Click", controllo);function controllo(){ let valore = document.getElementById("esercizio08").value; return console.log(valore); };
1 回答

RISEBY
TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超5個(gè)贊
你的代碼非常好。問(wèn)題是偵聽(tīng)器的名稱(chēng)click不是Click(小寫(xiě)“c”)。
const bottone = document.getElementById("button08");
bottone.addEventListener("click", controllo);
function controllo(){
let valore = document.getElementById("esercizio08").value;
console.log(valore);
};
<input id="esercizio08" name="test" type="text" value=""/>
<input type="button" value="..." id="button08"/>
僅供參考:我return
之前也刪除過(guò)console.log()
,因?yàn)椴恍枰?,并且我已修?code><input></input>為 single tag <input/>
。
- 1 回答
- 0 關(guān)注
- 178 瀏覽
添加回答
舉報(bào)
0/150
提交
取消