这是我为注册页面创建的HTML
<form role="form" action="" method="post" id="register_form">
<input type="text" id="facebook-autocomplete" name="facebook" class="form-control mdb-autocomplete GJ-search">
<input type="text" id="beatport-autocomplete" name="beatport" class="form-control mdb-autocomplete GJ-search" required>
<input type="email" id="inputValidationEmail" name="email" class="form-control" >
<input type="password" id="inputValidationPass" name="password" class="form-control" >
<input type="checkbox" class="custom-control-input" name="termsAndConditions" id="termsAndConditions" >
<input type="checkbox" class="custom-control-input" name="gdprAccept" id="gdpr" >
<button class="btn btn-outline-info btn-rounded btn-block my-4 waves-effect z-depth-0" value="Submit" type="submit">Sign up</button>
</form>
这是JavaScript,它将表单提取为JSON并通过控制台对其进行记录,并且可以正常工作。
//stringify form to JSON string
const serialize_form = form => JSON.stringify(
Array.from(new FormData(form).entries())
.reduce((m, [ key, value ]) => Object.assign(m, { [key]: value }), {})
);
$('#register_form').on('submit', function(event) {
event.preventDefault();
const json = serialize_form(this);
console.log(json);
});
我通过添加此jquery向Beatport输入添加了两个新属性
$('.beatport #beatport-autocomplete').attr('data-beatport-id', "id pulled from api");
$('.beatport #beatport-autocomplete').attr('data-beatport-name', "name pulled from api");
添加两个新属性后的Json结果是:
{"facebook":"big show","email":"dfghdfsghg@gmail.com","password":"fsdghfjgh","termsAndConditions":"on","gdprAccept":"on"}
您看到缺少两个新属性,当我添加它们时,输入如下所示:
<input type="text" id="beatport-autocomplete" name="beatport" class="form-control mdb-autocomplete GJ-search" required data-beatport-id="12345" data-beatport-name="artist name">
,JSON结果应如下所示:
{"facebook":"big show","beatportId":"12345","beatportName":"artist name","email":"dfghdfsghg@gmail.com","password":"fsdghfjgh","termsAndConditions":"on","gdprAccept":"on"}
答案 0 :(得分:0)
如果您要从html元素中提取数据属性,并且已经在使用jQuery设置它们,我想以下可能是您想要的。 (不确定您的问题是否是您想要的结果)如果可能的话,您可以进一步解释一下吗?
请在下面查看我的意思的示例。
首先,请说以下是您的注册表格。
<input type="text" id="name" />
<input type="text" id="email" />
<input type="text" id="phone" />
<input type="text" id="age" />
然后,您将添加两个数据属性,例如输入名称。
$('#name').attr('data-beatport-id', "id pulled from api");
$('#name').attr('data-beatport-name', "name pulled from api");
然后您可以序列化表格并将其添加到json变量中。
let json = serialize_form(this);
然后使用以下命令从“ #name”输入中获取数据属性。
json.beatport-name = $('#name').data("beatport-name")
json.beatport-id = $('#name').data("beatport-id")
然后您可以控制台记录此json对象。
console.log(json)
答案 1 :(得分:0)
如果要向表单添加数据,则可以使用隐藏的输入并通过js设置值
HTML
<input type="hidden" name="beatportID">
JS
$('[name="beatportID"]').attr('value', 'my data');