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...
検索入力フィールドに値属性を追加します
<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"/>