修改JS为
$(document).ready(function(){$("#menu_id ul ul").css("display","block")
$("#menu_id ul ul ul li a").click(function(){
console.log($(this).html())
})
})
<html><head>
<script type="text/javascript">
function showHint(str){
alert(str)
}
</script>
</head>
<body>
<input type="text" onkeyup="showHint(this.value)"/> <!--此处,在html标签中的this代表的是此标签-->
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)