读书人

能光标定位吗,该怎么解决

发布时间: 2012-01-19 00:22:27 作者: rapoo

能光标定位吗
就是填写信息是光标自动在第一个text上,vb能,不知这个能不能

[解决办法]
可以.
[解决办法]

HTML code
<body onload="moveUserName()">//这里别忘了 function moveUserName(){//这是定位光标的方法.    var iForm=document.all.listLogin;    iForm.elements['user_name'].focus();  }<input type="text" name="user_name" class="input_text" >//这是第一个text的这样就可以定位了
[解决办法]
在你页面的BODY里面加个事件<body onload="setFocus()">
//比如你想获得光标的text是这个
<input type="text" id="aa" />
<script>
function setFocus(){
var a = document.getElementById("aa");
a.focus();
}
</script>

读书人网 >Java Web开发

热点推荐