0
我想從搜索頁中提交搜索詞到搜索頁我們用以下HTML表單和AJAX代碼刷新整個索引頁,但似乎AJAX發送空值search_m.php和不能夠顯示在索引頁上的結果可以指出我在哪裏做錯了我不擅長AJAX? 注意我在數據庫中搜索使用Ajax從主頁中的其他PHP文件加載內容使用onClick
感謝和問候
<script language="javascript" src="js/jquery9min.js"></script>
<script language="javascript">
$('#search_btn').click(function(e) {
e.preventDefault();
$.ajax({
type : "GET",
url : "search_m.php",
data : $('#search_toggle').val(),
success: function (html) {
$("#more-info").html(html);
}
});
</script>
<form style="width:230px; margin:0 auto;" id="find" method="GET">
<input type="image" src="images/searchthis.png" id="search_btn">
<input type="text" id="search_toggle" name="q" placeHolder="type to start searching">
</form>
<div id="more-info">content should be displayed here</div>
沒有任何反應 – madcoder