0
我想驗證點擊錨點與jquery需要字段驗證器的文本框http://docs.jquery.com/Plugins/Validation你能告訴我怎麼做嗎?jquery點擊錨點所需的字段驗證器
我想驗證點擊錨點與jquery需要字段驗證器的文本框http://docs.jquery.com/Plugins/Validation你能告訴我怎麼做嗎?jquery點擊錨點所需的字段驗證器
綁定一個事件給這個錨的點擊與此:
$("#field_id_you_want_to_validate").validate({
rules: {
required: true
}
})
比方說您有ID爲「myAnchor」主播。這就是我寫的代碼
$("#myAnchor").click(function(){
// Validate the Textbox that you want
$("#textboxid").attr('class', 'required');
});