求用js代码写出点击出现下拉菜单,再次点击菜单消失
展开全部
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<input type="hidden" id="aaa" value="1"/>
<select id="select" style="display:none">
<option>111</option>
<option>111</option>
</select>
<a href="javascript:void(0)" onclick="ccc()">click me</a>
</body>
<script>
function ccc(){
var a=$("#aaa").val();
if(parseInt(a)%2 ==0){
alert(1)
$("#select").hide();
}else{
alert(2)
$("#select").show();
}
$("#aaa").attr("value", parseInt(a)+1);
}
</script>
</html>
自己吧jquery库搞进去大概就可以了
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<input type="hidden" id="aaa" value="1"/>
<select id="select" style="display:none">
<option>111</option>
<option>111</option>
</select>
<a href="javascript:void(0)" onclick="ccc()">click me</a>
</body>
<script>
function ccc(){
var a=$("#aaa").val();
if(parseInt(a)%2 ==0){
alert(1)
$("#select").hide();
}else{
alert(2)
$("#select").show();
}
$("#aaa").attr("value", parseInt(a)+1);
}
</script>
</html>
自己吧jquery库搞进去大概就可以了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询