jQuery:尝试验证自定义WordPress字段内的输入字段

时间:2019-03-12 22:28:10

标签: javascript php jquery wordpress required

尝试验证我在WordPress的事件日历中创建的自定义字段时遇到问题,该事件页面/帖子中有许多自定义字段。它使用标准的post-new.php或post.php,我希望能够针对其中一些自定义字段进行验证。但是,这些字段中没有ID。只有这样的名称元素:

<input type="text" name="_ecp_custom_3" value="">

所以我正在尝试此脚本:

jQuery(document).ready(function($) {
    $('#title').attr('required', true);
    $("[name='_ecp_custom_3']").attr("required", true);
});

#title效果很好,但自定义名称返回错误,提示:

  

解析错误:意外的令牌_ecp_custom_3

那么我如何使用name元素而不是ID来验证此字段?

0 个答案:

没有答案