请教鼠标悬停在提交按钮上怎么显示跳转地址?多谢
ie浏览器, 当鼠标悬停在提交按钮上时,怎么能像悬停在超链上一样显示 跳转地址 呢?
现在一台机器上有这个效果,另一台出不来,是安了什么插件么?
------解决方案--------------------是這種效果嗎?
<BODY>
<input type= "button " value= "OK " onMouseMove= "Show(this); ">
</HTML>
<SCRIPT LANGUAGE= "JavaScript ">
function Show(src){
src.title= "www.baidu.com ";
return;
}
</SCRIPT>
------解决方案-------------------- <BODY>
<input type= "button " value= "OK " onMouseMove= "javascript:this.title= 'www.baidu.com '; ">
</HTML>
------解决方案-------------------- <input type= "button " value= "OK " title= "www.baidu.com "/>
直接用也可以嘛。