我想在鼠标上隐藏并显示 lt; p>
标签, 但是我的代码只能隐藏 p
标签, 不再显示, 为什么?
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>
$(function(){
$("#mouse").mouseover(function(){
if($(this).is( :hidden )){
$(this).show("normal");
}
else{
$(this).hide("slow");
}
});
});
</script>
</head>
<body bgcolor="white">
<p id="mouse">
test
</p>
</body>
</html>