<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd“>
<html xmlns=”http://www.w3.org/1999/xhtml“>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<title>IE的hideFocus与非IE的outline:none</title>
<style type=”text/css”>
<!–
.STYLE1 {
outline:none;/*可用于a,input == */
}
–>
</style>
</head>
<body>
<a href=”#”>正常情况</a><br />
<input type=”checkbox” name=”checkbox” value=”checkbox” /><br />
<input type=”submit” name=”Submit” value=”正常情况” /><br />
<br />
<br />
<a href=”#” hidefocus=”true”>IE的hideFocus</a><br />
<input type=”checkbox” name=”checkbox” value=”checkbox” hidefocus=”true” /><br />
<input type=”submit” name=”Submit” value=”IE的hideFocus” hidefocus=”true” /><br />
对应的JS为:<br />
document.getElementById(ID).hideFocus = true;<br />
document.getElementsByName(Name).hideFocus = true;<br />
两都的区别:http://332374363.blog.51cto.com/5262696/1128379<br />
<br />
<br />
<a href=”#” class=”STYLE1″>非IE的outline:none</a><br />
<input type=”checkbox” name=”checkbox” value=”checkbox” class=”STYLE1″ /><br />
<input type=”submit” name=”Submit” value=”非IE的outline:none” class=”STYLE1″ /><br />
</body>
</html>
转载于:https://blog.51cto.com/332374363/1128383
今天的文章IE的hideFocus与非IE的outline:none分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/27532.html