7

我的身体里有这个,它有效

onLoad='document.forms.post.message.focus()'

但我需要将光标放在textarea任何现有文本的开头,而不是结尾。这把它放在最后。

4

1 回答 1

11
function moveCaretToStart(el) {
    if (typeof el.selectionStart == "number") {
        el.selectionStart = el.selectionEnd = 0;
    } else if (typeof el.createTextRange != "undefined") {
        el.focus();
        var range = el.createTextRange();
        range.collapse(true);
        range.select();
    }
}

moveCaretToStart(document.forms["post"].elements["message"]);
于 2010-07-28T20:20:01.753 回答