如何通过jQuery获取表单html(),包括更新的值属性?

时间:2013-05-29 15:44:38

标签: jquery html dom

是否可以通过.html()函数获取具有更新值属性的表单的html?

(简化)HTML:

<form>
    <input type="radio" name="some_radio" value="1" checked="checked">
    <input type="radio" name="some_radio" value="2"><br><br>
    <input type="text" name="some_input" value="Default Value">
</form><br>
<a href="#">Click me</a>

jQuery:

$(document).ready(function() 
{
    $('a').on('click', function() {
        alert($('form').html());
    });
});

这是我想要做的一个例子: http://jsfiddle.net/brLgC/2/

更改输入值并按“click me”后,它仍会返回带有默认值的HTML。

如何通过jQuery简单地获取更新的HTML?

3 个答案:

答案 0 :(得分:8)

如果您确实必须拥有HTML,则需要手动更新“value”属性: http://jsfiddle.net/brLgC/4/

$(document).ready(function() 
{
    $('a').on('click', function() {
        $("input,select,textarea").each(function() {
           if($(this).is("[type='checkbox']") || $(this).is("[type='checkbox']")) {
             $(this).attr("checked", $(this).attr("checked"));
           }
           else {
              $(this).attr("value", $(this).val()); 
           }
        });
        alert($('form').html());
    });
});

答案 1 :(得分:5)

RGraham的答案对我不起作用所以我将其修改为:

$("input, select, textarea").each(function () {
    var $this = $(this);

    if ($this.is("[type='radio']") || $this.is("[type='checkbox']")) {
        if ($this.prop("checked")) {
            $this.attr("checked", "checked");
        }
    } else {
        if ($this.is("select")) {
            $this.find(":selected").attr("selected", "selected");
        } else {
            $this.attr("value", $this.val());
        }
    }
});

答案 2 :(得分:1)

Lachlan的作品&#34;几乎&#34;完善。问题是当表单保存然后恢复然后再次保存时,收音机和复选框不会取消选中,而只是保持复合。简单修复如下。

$("input, select, textarea").each(function () {
    var $this = $(this);

    if ($this.is("[type='radio']") || $this.is("[type='checkbox']")) {
        if ($this.prop("checked")) {
            $this.attr("checked", "checked");
        } else {
            $this.removeAttr("checked");
        }
    } else {
        if ($this.is("select")) {
            $this.find(":selected").attr("selected", "selected");
        } else {
            $this.attr("value", $this.val());
        }
    }
});