我想在单击按钮时将值转移到函数中的id="insertValue"
变量...X
insert()
<input id="insertValue" type="text" />
<input type="button" value="Insert" onclick="insert('x')" />
我想在单击按钮时将值转移到函数中的id="insertValue"
变量...X
insert()
<input id="insertValue" type="text" />
<input type="button" value="Insert" onclick="insert('x')" />
insert(document.getElementById('insertValue').value)
应该这样做。
但是你的问题与ajax无关......
尝试这个。
JS:
function insert(e){
myValue = document.getElementById('insertValue').value;
// myValue is now set to the contents of the text field 'insertValue'
// let's check it...
alert(myValue);
}
HTML:
<input id="insertValue" type="text" />
<input type="button" value="Insert" onclick="insert(this)" />
我不明白您是否还想将按钮的值设置为文本字段的内容。如果您想(并且没有理由需要),只需将其添加到 JS 函数中即可。
e.value = myValue;