<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
? ? <head>
? ? ? ? <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
? ? ? ? <title>Untitled Document</title>
? ? ? ? <script type="text/javascript" src="./jquery-1.4.3.min.js">
? ? ? ? </script>
? ? ? ? <script type="text/javascript">
? ? ? ? ? ? $(function(){
? ? ? ? ? ? ? ? $("#tBtn").click(function(){
? ? ? ? ? ? ? ? ? ? $("#a").after($("#b"));
? ? ? ? ? ? ? ? })
? ? ? ? ? ? ? ? $("#tBtn1").click(function(){
? ? ? ? ? ? ? ? ? ? $("#a").append($("#b"));
? ? ? ? ? ? ? ? })
? ? ? ? ? ? })
? ? ? ? </script>
? ? </head>
? ? <body>
? ? ? ? <div id="a">
? ? ? ? ? ? <input type="button" value="test" id="tBtn"/>
<input type="button" value="test1" id="tBtn1"/>
? ? ? ? </div>
? ? ? ? <div id="b">
? ? ? ? ? ? <p>
? ? ? ? ? ? ? ? p
? ? ? ? ? ? </p>
? ? ? ? ? ? <script type="text/javascript">
? ? ? ? ? ? ? ? $(function(){
? ? ? ? ? ? ? ? ? ? alert("test");
? ? ? ? ? ? ? ? })
? ? ? ? ? ? </script>
? ? ? ? </div>
? ? </body>
</html>