こんにちは私はボタンをクリックしたときにjqueryを使用してdivを新しいdivに置き換えようとしています。現在、ボタンをクリックすると、新しいdivが表示されません。ボタンをクリックすると、空白になります。どうすれば隠されたものを見ることができますか?
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<button id="change">Change</button>
<div id="table1">
<table >
<tr>
<td>
this is table1
</td>
</tr>
</table>
</div>
<div id="table2" style="display: none">
<table >
<tr>
<td>
this is table2
</td>
</tr>
</table>
<div>
<script>
$("#change").click(function () {
$("#table1").replaceWith( $("#table2") );
});
</script>
</body>
</html>
例はここにあります:http://jsfiddle.net/S8HxM/1/