2013-05-27 50 views
1

我想在我的插件來檢查特定類,jQuery的基本插件

$.fn.Required = function(){ 

    return this.each(function(){ 

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

    } 
    }); 

就像你可以看到我嘗試把「*需要」這個詞的對象在此之後,當它具有類「需要「

如果您有任何解決方案,您可以免費發佈! - 日Thnx閱讀 -

+0

你'html'將幫助更多的給我們。 –

+0

你說得對,我以爲我做了正確的課,但我沒有! – user2252399

回答

1

試試這個,

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

Fiddle