在页面加载时,我想将光标移动到特定字段.没问题.但我还需要选择并突出显示该文本字段中的默认值.
来自http://www.codeave.com/javascript/code.asp?u_log=7004:
var input = document.getElementById('myTextInput');
input.focus();
input.select();
在输入标记中,放置以下内容:
onFocus="this.select()"
试试这个.这适用于Firefox和Chrome.
要在页面加载上执行此操作:
window.onload = function () {
var input = document.getElementById('myTextInput');
input.focus();
input.select();
}
我找到了一个非常简单的方法,效果很好: