我正在尝试使用一个确认框来显示文本框中的输入数据,但不是我放入的任何内容,确认框显示" null"输入应该在哪里。请帮忙。我尝试在确认框中添加.val()来命名,但没有运气。 JSFiddle
HTML:
First Name: <input type="text" id="namebox">
<input type="submit" id="submitbutton" onClick="confirmFunc()">
JS:
function confirmFunc() {
var name = document.getElementById("#namebox");
confirm("Please confirm that the following name is correct: " +name);
};
答案 0 :(得分:2)
使用此
function confirmFunc() {
var name = document.getElementById("namebox").value;
confirm("Please confirm that the following name is correct: " +name);
};