私はjQueryを初めて使用し、フォームを検証しようとしています。タイトルがすでにデータベースにある場合は、ajaxとphpで検索したいと思います。私が書いた以下のコードは機能し、タイトルがすでにdbにある場合は1を返し、そうでない場合は0を返します。この後、タイトルテキストフィールドにクラスを追加します。最後に、タイトルのテキストフィールドにそのクラスがあるかどうかを検索します。trueの場合はフォームを停止し、そうでない場合は送信します。
phpが1を返しても、スクリプトはフォームを送信し続けます。何を間違えたのですか?
// Process PHP file
$.ajax({
beforeSend: function()
{
// Show loading
$('#msg_search_load').removeAttr('style');
},
type: "GET",
url: "ajax_actions.php",
data: "action=search_category_add&title="+$("#category_title").val(),
dataType: "json",
cache: false,
success: function(html)
{
console.log("Category already exists: "+html.category_found);
if(html.category_found == 1)
{
$('#msg_search_load').css({ 'display': 'none' });
$('#msg_search_category').removeAttr('style');
$("#category_title").addClass("already_exists");
}
},
complete: function()
{
// Hide loading
$('#msg_search_load').css({ 'display': 'none' });
}
});
if($("#category_title").hasClass("already_exists")) { return false; }
これがHTMLフォームです
<form name="add_category" id="add_category" action="<?php echo $s_website_url; ?>/category_add.php" method="post">
<input type="hidden" name="action" value="add_category">
<table cellpadding="4" cellspacing="0">
<tr>
<td width="120">
<label for="category_title">Category title:</label>
</td>
<td>
<div class="content_msg" style="display: none;" id="msg_search_load"><img src="<?php echo $s_website_url; ?>/images/icons/loading.gif" class="content_msg_icon" alt="Warning"> Searching if category already exists.</div>
<div class="content_msg" style="display: none;" id="msg_search_category"><img src="<?php echo $s_website_url; ?>/images/icons/warning.png" class="content_msg_icon" alt="Warning"> Category already exists.</div>
<input type="text" name="category_title" id="category_title" class="form_textfield">
`<div class="content_count_chars" id="count_category_title"><span class="content_count_chars_green">100</span> characters remaining</div>
</td>
</tr>
</table>
<div align="center">
<!-- Fix Opera input focus bug -->
<input type="submit" value="Submit" style="display: none;" id="WorkaroundForOperaInputFocusBorderBug">
<!-- Fix Opera input focus bug -->
<input type="submit" value="Submit" class="form_submit">
</div>
</form>
AJAXで使用されるPHPコード:
// If category already exists
if(isset($_GET['action']) && $_GET['action'] == 'search_category_add')
{
$search_category = mysql_query("SELECT `id` FROM `categories` WHERE `title` = '".clear_tags($_GET['title'])."'",$db) or die(mysql_error());
if(mysql_num_rows($search_category) != 0)
{
echo json_encode(array('category_found' => '1'));
}
else
{
echo json_encode(array('category_found' => '0'));
}
}