我正在使用表单,并且想知道是否有人知道某些JavaScript可以编辑清除按钮实际清除的字段?
,即只需要在用户点击表单上的清除按钮后清除选定数量的字段。
input id='FrmReset' type='reset' value='Clear' name='resetButton' onclick='formReset(document.getElementById("Form")); return false;'
我只有以下内容清除所有内容
<input id='FrmReset' type='reset' value='Clear' name='resetButton' onclick='formReset(document.getElementById("Form")); return false;' />
答案 0 :(得分:1)
假设您有4个这样的字段:
<input type="text" value="don't clear this" id="i1" />
<input type="text" value="don't clear this" id="i2" />
<br/>
<input type="text" value="clear this" id="i3" />
<input type="text" value="clear this" id="i4" />
并且您只需要清除底部2.使用onclick事件添加一个普通按钮:
<button onclick="clearNeeded()">Clear only bottom fields</button>
function clearNeeded() {
document.getElementById('i3').value='';
document.getElementById('i4').value='';
}
如您所见 - 该功能有选择地只选择特定字段并重置其值。