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.
「年齢を入力」というエントリがある入力フィールドがあります。このフィールドにフォーカスを設定し、このフィールドに最初の文字を書き込んでヘルプの内容を消去したいと考えています。
$("#enter_age").val('Enter Age').focus(); ???
ヘルプ フィールドのフィールドを消去するという作業をユーザーに負わせるべきではありません。
$("#enter_age").value('Enter Age').select().focus();
これはうまくいきます!