带有jquery表单验证的Jquery插件charcount

时间:2012-11-16 05:05:49

标签: jquery jquery-plugins char

我正在使用charcount插件进行textarea

http://cssglobe.com/jquery-plugin-simplest-twitterlike-dynamic-character-count-for-textareas/

和jquery表单验证

http://bassistance.de/jquery-plugins/jquery-plugin-validation/

每件事情都工作得很好但是代替错误msg charcount即将到来,希望很明显。任何人都可以帮助我解决这个问题。谢谢提前。一个代码示例 http://jsfiddle.net/rashvish18/gF7ua/1/

这是我使用的代码

$(document).ready(function(){    
$("#story").charCount({
        allowed: 250,        
        warning: 20,
        counterText: 'characters remaining: '    
    });
            //$("#storyform").preventDefault();

$("#storyform").validate({
rules: {

    place:"required",
            story: "required"

},
messages: {
    story: "Please write your story",
    place: "Please write your place"

},errorElement: "span",
    wrapper: "span" // a wrapper around the error message

});

});

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为这个插件有一些bug,最后我使用的是sm diff插件,工作正常。

https://github.com/ndp/show_char_limit