首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

js 暗藏

2012-10-20 
js 隐藏htmlheadscript srchttp://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js typetex

js 隐藏

<html>
<head>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript" language="javascript"></script>

<script type="text/javascript">
$(document).ready(function(){
? $("p").click(function(){
? $(this).hide();
? });
});
</script>
</head>

<body>
<p>If you click on me, I will disappear.</p>
</body>

</html>

热点排行