实现这一点的最简单方法是在客户端使用jQuery来处理此验证。有很多方法可以实现这一点,但最简单的方法之一是使用现成的解决方案HERE
您需要下载插件文件并将其包含在标题中。像这样的php文件;
<script type="text/javascript" src="<?php bloginfo(\'template_directory\');?>/js/charCount.js"/></script>
然后,在上述线的正下方放置以下内容:;
<script type="text/javascript">
jQuery(document).ready(function(){
//custom usage
$("#txtTweet").charCount({
allowed: 500,
minChar: 15,
warning: 20,
counterText: \'Characters left: \',
disableControl: \'#btnSubmit\',
isDisable: true // is the control disable or not
});
});
</script>
确保上述代码片段放在您的;
<head>
// usual head stuff here
<?php wp_head();?>
// include the charCount.js
// include the custom usage snippet
</head>
之后包含文件的原因
wp_head
这个函数通常会输出
jQuery.js
需要在
charCount.js
和自定义代码才能正常工作。
这个链接又是HERE - 您可以看到一个有效的演示。