jquery实现点击消失的代码
更新时间:2014年03月03日 17:24:04 作者:
这篇文章主要介绍了jquery如何实现点击消失,需要的朋友可以参考下
jquery实现点击消失的源代码:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<script type="text/javascript" src="js/jquery-1.7.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").click(
function()
{
$(this).hide();
}
);
}
);
</script>
</head>
<body>
<p>点击我,我就会消失! </p>
</body>
</html>
复制代码 代码如下:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<script type="text/javascript" src="js/jquery-1.7.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").click(
function()
{
$(this).hide();
}
);
}
);
</script>
</head>
<body>
<p>点击我,我就会消失! </p>
</body>
</html>
相关文章
jquery form表单提交插件asp.net后台中文解码
对于jquery form表单提交插件jquery.form.js,在提交表单数据时,如果表单数据有中文,则被提交的数据是要经过编码的。2010-06-06jquery dialog open后,服务器端控件失效的快速解决方法
本篇文章是对jquery dialog open后,服务器端控件失效的快速解决方法。进行了详细的分析介绍,需要的朋友可以过来参考下,希望对大家有所帮助2013-12-12
最新评论