如果按下取消按钮,则在弹出文本框中输入的数据将被清除。
我使用以下代码执行此操作,
function clear()
{
document.getElementById("spacevalidate").setTextValue() = "";
}
html用于弹出框
<div id="overlay_form" style="display:none">
<h2> Create New Incident Type</h2>
<br />
Name
<input type="text" id="spacevalidate" style="height:30px;" name="title" maxlength="30" /><br />
<div style="width:180px;float:right;margin:20px 5px 0 10px">
<button id="bsave" type="submit" name="save" title="Save" class="forward">Save</button>
<button style="margin-right:10px;" type="button" id="close" name="cancel" class="forward backicon">Cancel</button>
</div>
更新
$(document).ready(function(){
//open popup
$("#addalist").click(function(){
$("#overlay_form").fadeIn(1000);
positionPopup();
});
1.现在我输入一些数据并按下取消按钮,再次打开相同的弹出窗口,数据在文本框中显示。我想在每次打开时清除,如果输入了一些数据并按下取消按钮。
答案 0 :(得分:5)
试试这个,
function clear()
{
document.getElementById("spacevalidate").value = "";
}
答案 1 :(得分:1)
正如Cam所说,只需在打开模态的函数中调用clear()
。