0
我正在尋找使用WP-Pointers來顯示由jQuery Validation Plugin生成的驗證錯誤的可能性。jQuery驗證和WP-指針
這是怎樣的WP-指針的JavaScript看起來像:
$('.selector').pointer({
content: '<h3>Error</h3><p>Lorem Ipsum.</p>',
position: 'right',
close: function() {
}
}).pointer('open');
這是如何驗證的JavaScript看起來像:
$('.registration-form').validate({
debug : true,
rules : { username : {required: true, minlength: 4},
email : {required: true, email: true}
},
messages : { username : 'Username must be atleast 4 characters long.',
email : 'Please enter a valid email address.'
},
errorLabelContainer : '.message-box',
submitHandler : function(form) {
$(form).ajaxSubmit({
success : show_registration_response,
url : ajaxVars.ajaxurl,
type : 'POST',
timeout : 10000,
clearForm : true,
resetForm : true
});
}
});
我想知道,如果WP-指針腳本可以作爲傳遞一個函數或驗證腳本中的某些內容將錯誤消息顯示爲WP-Pointer?
得到了解決。但是,由於我沒有足夠的聲望,因此無法在下一個7-8小時後發佈答案。 – John 2012-04-13 19:11:46