0
<body>
search:<input type="text" name="name" id="uniqueID" value="value" />
<button onclick="myFunction()">submit</button>
<p id="surprise"></p>
<script>
function myFunction() {
x = document.getElementById("uniqueID").value;
console.log(x);
}
</script>
</body>
如果我把輸入字段和按鈕放在<form>
裏面,那麼這個值會出現第二個並消失,爲什麼? (「閃爍」)從javascript窗體中獲取值閃爍
這是一個形式裏面? –
請詳細說明您正在獲取什麼錯誤以及您想要實現的目標? –