1
正如我理解,selectionStart必須從所選文本返回輸入文本或textarea元素開始位置如何使用selectionStart?
我已經這個js代碼
$("#inpt").on("mouseup" , function() {
alert($("#inpt").selectionStart);
});
和HTML
<input id="inpt" type="text" value="bla bla bla" />
當我選擇一些部分在文本「bla bla bla」中,結果是「未定義」。請大喊,我哪裏錯了?
'selectionStart'是DOM元素屬性,而不是一個jQuery對象.. –
這裏的解決方案:http://stackoverflow.com/questions/714830/selectionstart-end-with-textareas – Farnabaz
----謝謝----------- – RIKI