0
這是一種不尋常的方式,但無論如何要通過輸入標記將文本添加到JavaScript中嗎?通過輸入標記將文字加入JavaScript內容
例如,
<input type="text" id="example" />
,讓我們說,JavaScript是
function show_alert()
{
alert("The text entered in #example will show up here");
}
這是可能的呢?
完美!謝謝。 – Odyssey