ajax同时搜索多个关键词如何搞?
$.ajax({
type: "GET",
url: "/index.php?s=shop&c=search&catid=$catid&ajax_page=myajax.html&page=1&keyword=关键词",
dataType: "text",
success: function(html){
$('#mysearch').html(html);
}
});url: "/index.php?s=shop&c=search&catid=$catid&ajax_page=myajax.html&page=1&keyword=关键词1,关键词2,关键词3",
大概就是类似多选一样,有案例,或者教程么?或者一个多词在url上应该是一个什么样形式?