jQuery remove()检索

时间:2013-02-01 17:01:13

标签: javascript jquery html ajax

基本上我正在使用OnClick调用来删除DIV,一旦我单击OnClick就会调用remove()jQuery函数来删除div,

这是我使用remove()删除div的当前代码。

<div id="add">
<button type="submit" onclick="showdiv('adduser');">Add User</button>
</div>

“showdiv”的javascript调用是

function showdiv(id){
    $("#add").remove();
    document.getElementById(id).style.display = "inherit";
}

在div id“adduser”中,我想显示另一个按钮来执行onclick以带回div id“add”,这是可能的,这是最好的方法吗?

1 个答案:

答案 0 :(得分:2)

您可以使用show()和hide()函数,而不是使用remove()永久删除div

function showdiv(id){
    $("#add").hide();
    document.getElementById(id).style.display = "inherit";
}