Is there a way to apply characters limit inside wp_editor function?(有没有办法在 wp_editor 函数中应用字符限制?)
问题描述
我正在尝试找出如何在前端提交表单的资源框中组合此代码,但我需要将其限制为一定数量的字符.
I am trying to find out how to combine this code in resource box on a front end submission form but I need it to be limited to a certain number of characters.
<?php wp_editor( get_option('resource'), 'resource', array('textarea_name' => 'resource', 'class'=>'requiredField', 'textarea_rows'=>'6','id'=>'resource' ,'onkeyup'=>'countChar(this)','media_buttons' => false) );?><?php if(isset($_POST['resource'])) { if(function_exists('stripslashes')) { echo stripslashes($_POST['resource']); } else { echo $_POST['resource']; } } ?>
此代码检查该字段是否为空:
This code checks if the field is empty:
<?php if(isset($_POST['resource'])) { if(function_exists('stripslashes')) { echo stripslashes($_POST['resource']); } else { echo $_POST['resource']; } } ?>
如何在 wp_editor 函数中进行检查?我需要这个来允许和简化我的资源框中的 html 给用户...
How can I make that check inside wp_editor function? I need this to allow and simplify html inside my resource box to users...
这是我在里面使用的 javascript 函数 ('onkeyup'=>'countChar(this)') 但它不起作用.
This is the javascript function that I am using ('onkeyup'=>'countChar(this)') inside but it's not working.
我在这儿摔倒了吗?
推荐答案
我根据自己的需要稍微修改了 Bryan Gentry 的解决方案,它运行良好.如果您需要类似的功能,这是我的代码.
I altered Bryan Gentry's solution a tiny bit to my needs and it works nicely. Here is my code if you need a similar functionality.
add_filter( 'tiny_mce_before_init', 'wpse24113_tiny_mce_before_init' );
function wpse24113_tiny_mce_before_init( $initArray )
{
$initArray['setup'] = <<<JS
[function(ed) {
ed.onKeyDown.add(function(ed, e) {
if(tinyMCE.activeEditor.editorId=='content-id') {
var content = tinyMCE.activeEditor.getContent();
var max = 300;
var len = content.length;
if (len >= max) {
$('#charNum').html('<span class="text-error">You've got more then '+max+' characters!</span>');
} else {
var charCount = max - len;
$('#charNum').html(charCount + ' characters left');
}
}
});
}][0]
JS;
return $initArray;
}
这篇关于有没有办法在 wp_editor 函数中应用字符限制?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有办法在 wp_editor 函数中应用字符限制?
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01