我有一个如下定义的div:
<input name="Search" class="form-control" id="urlText" type="text" style="height:32px;float:left;margin-left:400;width:500px;" placeholder="Enter your URL" />
在页面刷新时,我试图清空此文本框所持有的值。有没有办法实现这个目标?
答案 0 :(得分:1)
$(document).ready(function(){
$("#urlText").val("");
});
答案 1 :(得分:1)
这在某些浏览器中会自动发生,但有些浏览器会将数据保存到页面刷新中。 简单的伎俩就是用javascript&amp; jquery的
$(document).ready(function(){
$('input#urlText').val("");
})
或
document.getElementById("#urlText").value="";
或关闭自动填充功能
<input name="Search" autocomplete="off" class="form-control" id="urlText" type="text" style="height:32px;float:left;margin-left:400;width:500px;" placeholder="Enter your URL" />
答案 2 :(得分:0)
window.onload = function() {
$('#urlText').val('')
}
或
$(document).ready(function(){
$('#urlText').val("");
})
答案 3 :(得分:0)
试一试......
function myFunction()
{
if(location.reload())
{
document.getElementById('urlText').value="";
}
}
我不知道它是否有效......但是一旦试一试......对不起,如果它没有工作......