
HTMNL JS CHEOME HTML JS 现在有一个div,there has someting in the div
然后我用document.getElementById("theDiv“).focus(),得到焦点,但是光标会在文本的第一个字符前,如何实现让闪动的光标在文本的最后一个字符后面,求大神指教
回复讨论(解决方案)
在theDiv内套个编辑器不可以吗?光div可能实现不了
script>
$(function () {
$("#aa").focus();
});
function cc() {
var e = event.srcElement;
var r = e.createTextRange();
r.moveStart("character", e.value.length);
r.collapse(true);
r.select();
}
script>