deng131 写道
项目中客户要求选择商品后,光标直接定位到数量输入框上,来简化操作。
document.getElementById("cargoCount").focus();//定位光标到数量框
还有需求涉及到定位到第几位字段上。
在IE浏览器下使用是createTextRange而Firefox/chrome等浏览器下使用setSelectionRange
IE:
FF:
参考:
http://hi.baidu.com/wangjiashui/blog/item/da1e4e6eabbe96dc80cb4a29.html
http://www.zhangxinxu.com/wordpress/?p=755
document.getElementById("cargoCount").focus();//定位光标到数量框
还有需求涉及到定位到第几位字段上。
function setMouse(){
var e = event.srcElement;
var r = e.creatTextRange();
r.moveStart('character',2);
r.collapse(true);
r.select();
}
在IE浏览器下使用是createTextRange而Firefox/chrome等浏览器下使用setSelectionRange
IE:
var range = obj.createTextRange();
range.moveStart("character", 开始序号);
range.moveEnd("character", 结束序号);
range.select();
FF:
obj.setSelectionRange(开始序号, 结束序号);
obj.focus();
参考:
http://hi.baidu.com/wangjiashui/blog/item/da1e4e6eabbe96dc80cb4a29.html
http://www.zhangxinxu.com/wordpress/?p=755