Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 JS 阅读了一些关于此的主题。当用户登陆页面时,有没有办法使用 JS 让 onFocus 在 IE 中工作?
如果您单击搜索框并再次关闭,search site...则会出现 。它在所有其他浏览器中都能正常工作。谢谢你。
search site...
将 value 属性添加到搜索输入字段
<input value="search site..." class="searchBox" id="q" onfocus="this.value = this.value=='search site...'?'':this.value;" onblur="this.value = this.value==''?'search site...':this.value;" type="text" size="70"/>