6
如何將自定義屬性添加到Wordpress wp_editor textarea字段?如何將自定義屬性添加到Wordpress wp_editor文本區?
在官方文檔中沒有辦法做到這一點。我需要添加客戶端驗證屬性(data-bvalidator =「required」)到由wp_editor WordPress生成的文本區域。
有什麼建議嗎?
如何將自定義屬性添加到Wordpress wp_editor textarea字段?如何將自定義屬性添加到Wordpress wp_editor文本區?
在官方文檔中沒有辦法做到這一點。我需要添加客戶端驗證屬性(data-bvalidator =「required」)到由wp_editor WordPress生成的文本區域。
有什麼建議嗎?
我覺得有沒有添加自定義屬性在wp_editor()
所以你需要添加使用JQuery
首先添加額外的類(ES)的編輯text-area
場自定義屬性的選項text-area
$settings = array(
......
'editor_class' => 'customclass_for_addattr',
......
);
wp_editor($content, $editor_id, $settings );
在wp_editor()函數之後添加下面的jQuery代碼。它將自定義屬性添加到text-area
使用jQuery atrr
方法
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".customclass_for_addattr").attr('data-bvalidator','required');
});
</script>