标签: jquery focus
我有一个输入字段,其条目为“输入年龄”。 我想将焦点设置到此字段,并使用写入此字段的第一个字母擦除帮助内容。
$("#enter_age").val('Enter Age').focus(); ???
用户不应该承担擦除帮助字段字段的任务。
答案 0 :(得分:1)
$("#enter_age").value('Enter Age').select().focus();
这有效!