行政区满足需求:默认选中行政区按钮,点击月份按钮,行政区按钮失去焦点!UI内嵌方法这种办法不能满足需求,所以才一直想办法,找到上述万能办法需求:默认选中行政区按钮,点击月份按钮,行政区按钮失去焦点实际:默认选中_el-button autofocus">
赞
踩
<el-button ID="areaButton" autofocus @click="areaMethod">行政区</el-button>
满足需求:默认选中行政区按钮,点击月份按钮,行政区按钮失去焦点!
这种办法不能满足需求,所以才一直想办法,找到上述万能办法
需求:默认选中行政区按钮,点击月份按钮,行政区按钮失去焦点
实际:默认选中行政区按钮,点击月份按钮,行政区按钮不失去焦点
如下
还有其他办法,一块记录下来!
一、 格式
<body οnlοad=document.formname.textname.focus()>
formname为表单名称,后面接着的textname 是文本框的名称。
示例:
<html>
<head></head>
/************这儿这儿这儿这儿这儿这儿*****************************/
<body onLoad="document.user.username.focus()" >
<form name="user" action="">
<input type="text" name="username">
</form>
</body>
</html>
这个方法比较简单,推荐使用。
二、使用JavaScript,相对麻烦
<html> <head></head> <body > <input type="text" id="name"> <!--设置文本输入框的id为name--> <script language="javascript"> document.getElementById('name').focus(); <!--设置id为name的元素得到焦点--> </script> </body> </html>
按钮默认获取鼠标焦点汇总,欢迎留言交流!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。