如何将自定义属性添加到 Wordpress wp_editor 文本区域?
How to add custom attribute to Wordpress wp_editor text-area ?
如何将自定义属性添加到 Wordpress wp_editor textarea 字段?
在官方文档中没有办法做到这一点。我需要将客户端验证属性(data-bvalidator="required")添加到由 WordPress 的 wp_editor 方法生成的文本区域。
有什么建议吗?
我认为 wp_editor()
中没有添加自定义属性的选项
因此您需要使用 JQuery
在 text-area
字段中添加自定义属性
首先向编辑器添加额外的class(es)text-area
$settings = array(
......
'editor_class' => 'customclass_for_addattr',
......
);
wp_editor( $content, $editor_id, $settings );
在 wp_editor() 函数之后添加下面的 jQuery 代码。它使用 jQuery atrr
方法
将自定义属性添加到 text-area
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".customclass_for_addattr").attr('data-bvalidator','required');
});
</script>
如何将自定义属性添加到 Wordpress wp_editor textarea 字段?
在官方文档中没有办法做到这一点。我需要将客户端验证属性(data-bvalidator="required")添加到由 WordPress 的 wp_editor 方法生成的文本区域。
有什么建议吗?
我认为 wp_editor()
因此您需要使用 JQuery
text-area
字段中添加自定义属性
首先向编辑器添加额外的class(es)text-area
$settings = array(
......
'editor_class' => 'customclass_for_addattr',
......
);
wp_editor( $content, $editor_id, $settings );
在 wp_editor() 函数之后添加下面的 jQuery 代码。它使用 jQuery atrr
方法
text-area
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".customclass_for_addattr").attr('data-bvalidator','required');
});
</script>