完全不可见的html按钮

| 使用以下代码:
<html>
<body>
<input type=\"submit\" style=\"color: transparent; background-color: transparent; border-color: transparent; cursor: default;\">
</body>
</html>
将此文件另存为html文件。如果打开文件,则有一个不可见但仍处于活动状态的按钮。 按Tab键选择按钮。现在,在仍然不可见的按钮周围有一个灰色的虚线矩形。有人可以帮我禁用该矩形。感谢响应者 我正在尝试进行完全不可见的网站登录,这是其中唯一可见的部分,请提供帮助。     
已邀请:
当焦点对准按钮时,可以使用样式“ 1”禁用按钮上的虚线矩形。 例:
<input type=\"submit\" style=\"outline: 0;\">
不过,我不确定您要做什么是正确的...您是否只是想隐藏按钮?最好的选择是使用
display: none;
例:
<input type=\"submit\" style=\"display: none;\">
    
这对我有用。 (仅在Opera上经过YMMV测试)。
<input type=\"submit\" style=\"background:transparent; border:none; color:transparent;\">
http://jsfiddle.net/AHsdJ/3/     
使用CSS:focus和:active伪类
<html>
<head>
<style type=\"text/css\">
input:focus, input:active { outline: none;}
</style>
</head>
<body>
<input type=\"submit\" style=\"color: transparent; background-color: transparent; border-color: transparent; cursor: default;\">
</body>
</html>
    
只需像执行操作一样使其透明,然后将按钮禁用即可。这对我来说非常合适。
<input type=\"submit\" style=\"color: transparent; background-color: transparent; border-color: transparent; cursor: default;\" disabled>
    
根本不用按钮。 使用AJAX通过帖子发送登录数据并处理页面中的响应。     

要回复问题请先登录注册