0
A
回答
1
HTML
<input type="text" name="textbox1" />
jQuery的
$(document).ready(function(){
$('input[type="text"]').select(function() {
alert(window.getSelection());
});
});
1
您可以使用.selectionStart和.selectionEnd。例如:http://jsfiddle.net/tonicboy/225B8/
<input type="text" name="foobar" id="foobar" /><button type="button">Show Value</button>
$("button").click(function() {
var selected = getSelect($("#foobar"));
alert('highlighted text: ' + selected);
});
function getSelect($el) {
var fullvalue = $el.val(),
el = $el.get(0);
return $el.val().substring(el.selectionStart, el.selectionEnd);
}
相關問題
- 1. jquery輸入字段 - 按字符獲取
- 2. jQuery獲取輸入字段的舊值
- 3. jQuery:獲取輸入字段的值
- 4. 從jQuery Form插件中提取輸入字段的值
- 5. 從html輸入字段獲取值插入到使用jquery的src標記
- 6. 使用jQuery從輸入字段中獲取值
- 7. 獲取數字輸入字段的輸入值,而不是解析
- 8. 使用jQuery獲取/更改html輸入字段的值
- 9. 如何使用jQuery從輸入字段在中插入值?
- 10. jQuery從輸入字段中提取值
- 11. jQuery獲取輸入字段的值,其中字符串包含括號?
- 12. Jquery,獲取輸入類型的值=「文件」字段
- 13. jquery獲取輸入字段的ID
- 14. 獲取輸入字段值而不刷新頁面
- 15. 使用jQuery將值插入輸入字段?
- 16. 更改HTML輸入值並使用jQuery獲取HTML字符串
- 17. 使用jQuery獲取文件輸入字段
- 18. Jquery BlockUI插件 - 阻止輸入字段
- 19. jQuery - 獲取表中最後一行的輸入字段值?
- 20. 獲取字段集中所有jQuery輸入的值
- 21. 高亮值輸入
- 22. 了jQuery角獲得輸入字段值
- 23. 使用JavaScript獲取表單中輸入字段的值
- 24. jquery表讀取輸入字段值
- 25. 如何使用jQuery獲取文件輸入字段的當前值
- 26. jquery不改變輸入字段的值
- 27. 如何從輸入字段獲取字符串值?
- 28. 從輸入字段獲取值
- 29. 從回聲輸入字段獲取值
- 30. 獲取值和最近輸入字段
可能的重複問題。看到這個問題/答案[http://stackoverflow.com/questions/5379120/get-the-highlighted-selected-text](http://stackoverflow.com/questions/5379120/get-the-highlighted-selected-text ) –
[使用jQuery獲取高亮顯示的文本.select()?](http://stackoverflow.com/questions/12211964/get-highlighted-text-using-jquery-select) – Horen
@霍倫感謝很多 – ProllyGeek