1

我想在我的插件中检查一个特定的类,

    $.fn.Required = function(){

    return this.each(function(){

    if($(this).hasClass("required")){
    $(this).after("*required");
    alert("test");

    }
    });

如您所见,当对象具有“必需”类时,我尝试将“*必需”一词放在对象之后

如果您有任何解决方案,您可以免费发布!- 谢谢阅读 -

4

1 回答 1

1

尝试这个,

$.fn.Required = function(){ 
    return this.each(function(){
        if($(this).hasClass("required")){
            $(this).after("<label>*required</label>");
            alert("test");
        }
    });
};

小提琴

于 2013-05-27T09:53:37.837 回答