2012-02-02 25 views

回答

4

根據你能提供這個插件的選項(參見http://docs.jquery.com/Plugins/Validation/validate#options),你可以指定errorLabelContainererrorContainer選項,在那裏將組的錯誤信息爲單個或多個容器。

樣品從現場拍攝:

<ul id="messageBox"></ul> 

 

$("#myform").validate({ 
    errorLabelContainer: "#messageBox", 
    wrapper: "li", 
    submitHandler: function() { alert("Submitted!") } 
}) 
相關問題