检查文本框中的值是使用jquery选择的

可能重复:
使用jQuery检查复选框选中的属性

任何人都可以让我知道如何检查在HTML文本框中使用jQuery选择的值。 例如,如果选中文本框中的值,文本将以蓝色背景显示。


看到这个:http://jsfiddle.net/rT5vR/

var t = '';
if(window.getSelection) {
    t = window.getSelection();
} else if(document.getSelection) {
    t = document.getSelection();
} else if(document.selection) {
    t = document.selection.createRange().text;
}
return t;
}

$("#myElement").select(function(eventObject) {
alert(getSelected().toString());
});

$('#myElement').select(function(e) {
var start = e.target.selectionStart;
var end = e.target.selectionEnd;
alert($('#myElement').val().substring(start, end));
});

第二个是完美的。 不知道第一个跨浏览器有多少...

链接地址: http://www.djcxy.com/p/9519.html

上一篇: Check the value in textbox is selected using jquery

下一篇: jQuery if checkbox is not checked issue