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();
这行得通!