当通过选择选项选择时,它将更改表格不同的信息但具有相同的标识符,我希望,当发生更改时,可以隐藏旧表格并显示新表格。
这是我的jquery代码:
$("#testing").change(function() {
$.ajax({
type: "POST",
url: "test_gets.php",
data: { country: selectedCountry }
}).done(function(data) {
if ($("#inner_content1").length !== 0) { $("#search_b").hide(1000) };
$("#inner_content1").append(data + "<br/>");
});
});
此页面test_gets.php包含要显示的表:
<form dir="rtl" method="POST" class="search_b" id="search_b">
这是通过变更发生的形式的一部分:
<select name="testing" class="testing" id="testing">
在这种情况下,当我改变时,它会隐藏旧的和新的节目,但是当我再次改变时,旧节目和新节目,我只想展示新节目。
我希望能够很好地理解我的问题 有什么想法吗?