HTML/JS:删除表单?

发布于 2024-12-19 23:40:40 字数 170 浏览 0 评论 0原文

我想删除一个 html 表单。最好的方法是什么?

是使用javascript吗?我将有几个带有文本的表单,每个表单上都有一个删除(提交)按钮,以及一个用于确认删除的 JavaScript。有人有任何建议或链接到好的信息网站吗?我尝试过 google 和 W3S 但没有找到任何东西。

提前致谢。

I want to delete a html form. Whats the best way to do this?

Is it using javascript? I'm going to have several forms with text and a delete(submit) button on each form, and a javascript to confirm deletion. Does anyone have any suggestions or links to good informative sites? I've tried google and W3S but haven't found anything.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

难如初 2024-12-26 23:40:40

没有 jQuery,使用 DOM

function Remove(form_id) {
    if (window.confirm('Remove this form?')) {
        var f = document.getElementById(form_id);
        f.parentNode.removeChild(f);
    }
}

像这样使用:

onclick="Remove('form_id')"

Without jQuery, using DOM:

function Remove(form_id) {
    if (window.confirm('Remove this form?')) {
        var f = document.getElementById(form_id);
        f.parentNode.removeChild(f);
    }
}

Use like this:

onclick="Remove('form_id')"
孤寂小茶 2024-12-26 23:40:40

您可以使用 jQuery 的 .detach.remove ..

$(function(){
      $('#button').click(function(){
              if ( confirm ( 'Remove this form ?' ) ) {
                    $('#form').remove()
              }
      });
});

You can use the .detach or .remove of jQuery ..

$(function(){
      $('#button').click(function(){
              if ( confirm ( 'Remove this form ?' ) ) {
                    $('#form').remove()
              }
      });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文