html 怎样把输入框隐藏?
<html><head><scriptsrc="jquery-2.1.1.min"></script><script>$(document).ready(function...
<html>
<head>
<script src="jquery-2.1.1.min"></script>
<script>
$(document).ready(function(){
$("#a").focus(function(){
$(this).css("border","1px")
}).blur(function(){
$(this).css("border","0px")
})
}
</script>
</head>
<body>
<input id="a" type="text" >
</body>
</html>
代码是这个,怎么样让鼠标移动到上面的时候出现,离开隐藏 展开
<head>
<script src="jquery-2.1.1.min"></script>
<script>
$(document).ready(function(){
$("#a").focus(function(){
$(this).css("border","1px")
}).blur(function(){
$(this).css("border","0px")
})
}
</script>
</head>
<body>
<input id="a" type="text" >
</body>
</html>
代码是这个,怎么样让鼠标移动到上面的时候出现,离开隐藏 展开
展开全部
<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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询