回答
假設該元素的ID是anInput
,你應該能夠做到以下幾點:
var $input = $("#anInput");
$input[0].select();
$輸入代表的包裹集或jQuery對象,因爲你把它。這個集合的zeroeth索引是您的選擇器匹配的第一個DOM元素(在這種情況下只有一個)。有了這個元素,select函數應該選擇它的內容。
這是你所需要的?
使用選擇功能選擇/突出顯示文本,如本文所示。 – 2009-09-06 05:23:26
現在工作,您好 – omg 2009-09-06 05:24:31
沒有問題......順便說一句,你是對的,你可能不需要明確的呼籲在這裏集中。 – 2009-09-06 05:25:38
聚焦元素使用
$(input).focus();
爲了突出它創建一個額外的highligh CSS類,你想要做的高亮(或者你直接修改的元素風格)在聚焦和模糊事件。
$(input).focus(function() { $(this).addClass("highlight"); });
$(input).blur(function() { $(this).removeClass("highligh"); });
- 1. 增加<input type =「text」>
- 2. <input type =「text」/>換行
- 3. 拆分<input type =「text」>使用Angular.js
- 4. <input type =「submit」/>和<input type =「text」/>
- 5. 我可以使用<input type =「text」>來模擬<input type =「file」>嗎?
- 6. HTML <input type =「text」... as <input type =「file」
- 7. 如何使<span>高度與<input type =「text」>
- 8. 如何在<input type =「text」>標籤內放置<input type =「file」>?
- 9. 使用<select>和<input type ='text'>
- 10. 對於<input type =「text」/>使用Chosen(jQuery插件)
- 11. 如何使用JavaScript顯示html輸入:.html('<input type =「text」/>')
- 12. 另一個ASP:Textbox vs <input type =「text」>
- 13. 使用的動態<select>值顯示一個<input type =「text>中
- 14. 如何使用jQuery從HTML <input type =「date」>中提取值
- 15. 使用<input type = number>
- 16. Jquery $(:text)and $(input [type =「text」])
- 17. jquery datepicker僅適用於Chrome中的<input type = text>?
- 18. 如何使用Javascript在<input type =「text」>上填寫文字<select>?
- 19. jQuery set <input type =「range」>值
- 20. 我是否需要使用:指定jQuery選擇器時?的</p> <pre><code>$(":input[type='text']").wijtextbox(); </code></pre> <p>
- 21. 如何用<input type =「file」>選擇多個文件?
- 22. 如何將<input type =「image」>綁定到<input type =「text」>?兩者都是相同的形式
- 23. <input type =「file」/>
- 24. <input type ='text'/>和<textarea>寬度
- 25. <asp:TextBox> Vs <input type =「text」> Vs Html.TextBox
- 26. 結合INPUT TYPE =「text」和選擇標籤
- 27. <input type ='button'/>和<input type ='submit'/>之間的區別
- 28. 如何使用jQuery替換input [type = submit]輸入[type = text]?
- 29. 用於<input type =「?」的CSS選擇器
- 30. 圖表標題來自<input type ='text'> jquery
我真的不知道你在問什麼。你能解釋一下你想要做多一點嗎? – TehOne 2009-09-06 05:16:48
的文字在選中時突出顯示,是否足夠清晰? – omg 2009-09-06 05:18:16