在jsp中,单选按钮的点击事件(点击隐藏或显示输入框)

直接上代码:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title></title>
</head>
<script src="js/jquery.min.js"></script>
<body>
<input id="p1" type="text" name="p1"/>
<label> <input id="hide" name="jigoushuxing" type="radio" value="其他" /> 隐藏</label>
<label> <input id="show" name="jigoushuxing" type="radio" value="其他" /> 隐藏</label>
<script type="text/javascript">
$(document).ready(function(){
$("#hide").click(function(){
$("#p1").hide();
});
$("#show").click(function(){
$("#p1").show();
});
});
</script>
</body>
</html>

posted on 2020-10-07 01:03  王玉昙  阅读(1792)  评论(0编辑  收藏  举报

导航