我有一个表单,我想将表单的一部分和一些 html 保存到我的数据库中。
<div class="contract">
<label for="Company_PostCode">Postcode</label>
<input class="postcode valid" id="Company_PostCode" name="Company.PostCode" type="text" value="">
<label for="Company_Address">Address</label>
<input class="address valid" id="Company_Address" name="Company.Address" type="text" value="">
// more form elements here
<div class="text">
some text here
</div>
</div>
我所做的是
$("#submit-button").on("click", function(e)
{
e.preventDefault();
$(".hidden-field").val($(".contract").html());
if (/* some checks here */)
{
// blah blah
}
else
{
//submit form normally
$("#form-register").submit();
}
});
所以我有一个隐藏字段,用于放置我想要的 html 并将其发布到我的控制器。问题是我的表单的值都是空的。 $( ".contract" ).html() 的所有值都是空的。有任何想法吗?