您好,有一个包含几个字段的表格。其中:
<div>
<label for="phoneNumber" class="label">Phone Number</label>
<input name="phoneNumber" type="text" id="phoneNumber" size="13" style="float:left;margin-right:10px;">
</div>
<div>
<input type="checkbox" name="activePN" id="activePN" checked >
<label for="activePN">Active</label>
</div>
提交表单时,我想验证输入并在每个字段旁边写下未验证的字段。像这样:
$('#submit').click(function () {
var proceed = true;
var strippedPN = $('#phoneNumber').val().replace(/[^\d\.]/g, '').toString(); //strips non-digits from the string
if (strippedPN.length !== 10) {
$('#phoneNumber').text('<p>Phone number has to be 10 digits long.</p>')
proceed = false;
}
...
...
...
});
我希望添加这些<p> </p>
标签可以做到这一点。但他们没有......注意:我也尝试过 withhtml()
而不是text()
和 withactivePN
而不是phoneNumber
。