<script>
$(document).ready(function() {
$('#site').bind('click',function() {
//1、append():将新元素添加到当前的jQuery对象中
$(this).append('html');//html添加到了h3标签里面
//2、after():将新元素添加到当前对象的后面
$(this).after('<p style='color:red'>免费</p>');//添加到h3标签后面同级
//3、prepend():将新元素添加到当前元素的前面,它还在当前元素中
$(this).prepend('<a href="http://xxxx.com">点击</a>');//添加到h3里面
//4、before():将新元素添加到当前元素的前面
$(this).before('<h2>欢迎</h2>');//添加到h3前面同级
//5、replaceWith():替换当前元素
$(this).replaceWith('<h1>'+$(this).text()+'</h1>');
$(this).replaceWith(function() {
return '<h2>学习</h2>';
});
});
});
</script>
<body>
<h3>php</h3>
</body>