javascript,如何实现onmouseover悬浮时清除文本框的提示内容
发布网友
发布时间:2022-04-23 17:30
我来回答
共1个回答
热心网友
时间:2022-04-24 20:43
首先input要有id
比如
<input type="text" name="test1" id="test1" value="abcd">
(注意 IE下面ID会取到NAME去 而FIREFOX就不会 所以要两个)
JavaScript内容:
function clrtext(totext){
if (document.getElementById(totext)!=null)
{
document.getElementById(totext).value=""
}
}
使用:clrtext(test1) 就会将name=test1 and id=test1的文本框内容清空