您好我正在尝试使用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>
答案 0 :(得分:1)
由于您应用于table2
的风格,它是空的:
style="display: none"
table1
被隐藏的表替换;-)所以你必须添加这个:
$("#table1").replaceWith( $("#table2").show() );
答案 1 :(得分:-1)
尝试使用$(“#table2”)更改代码.html()