一、<input
type="hidden"
/>
二、<input
type="text"
style="display:none"
/>
三、<input
type="text"
style="visibility:
hidden"
/>
第三种方法可以实现占位隐藏(会留下空白而不显示)
<html><head>
<script src="jquery-2.1.1.min"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#a").hover(function(){
$(this).css({border:"1px solid #444"})
},function(){
$(this).css({border:"none"})
})
})
</script>
</head>
<body>
<input id="a" type="text" >
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)