日期:2014-05-16 浏览次数:20339 次
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script src="jquery-1.4.4.js"></script>
<script type="text/javascript">
$(function(){
$("#change").toggle(function(){
$("#text2").append("<h2>添加文本</h2>");
},function(){
$("#text2").remove();
});
});
</script>
</head>
<body>
<input type="button" value="change" id="change"/>
<p id="text2"></p>
</body>
</html>
$(function(){
$("#change").toggle(function(){
alert($('#text2'))
//$("#text2").append("<h2>添加文本</h2>");
alert("do.1")
},function(){
alert("do.2")
// $("#text2").remove();
});
});