我有一个带密码的受保护帖子。
我想检查密码发送在ajax 中是否正确。
HTML:
<form class="protected-post-form" action=".../wp-pass.php" method="post">
<input name="post_password" id="pwbox-4470" type="password" size="20">
<input type="submit" class="send" name="Submit" value="Login">
</form>
jQuery :
$("input.send").live("click", function(){
$.ajax({
url: ".../wp-pass.php",
cache: false,
success: function(data) {
// show content
}
});
});
可能吗 ?
谢谢