我有一个名为保存更改的函数,它看起来像这样
function saveChanges() {
var theCity = city.value;
var theState = state.value;
var theEmail = email.value;
var theAge = age.value;
var theGender = gender.value;
var theOther = other.value;
alert("theCity is: "+ theCity);
alert("theState is: "+ theState);
alert("theEmail is: "+ theEmail);
alert("theAge is: "+ theAge);
alert("theGender is: "+ theGender);
alert("theOther is: "+ theOther);
}
window.onload=function (){
document.getElementById('ok').onclick=saveChanges;
}
我有一个简单的 html 页面,上面有多个输入。
要提交内容,我在底部有一个链接。
<a href="#" id="ok" style="color:white;">Click here <-- </a>
我制作了一个具有相同 id='ok' 的按钮,但它不起作用。
我错过了什么?