js部分:
$('.new-title-info-btn').mouseenter(
function(){
var key=$(this).attr('class').split(" ")[1];//这里key取单独给他们的class值
$('.'+key).click(function(){
$.ajax({
url:"js4-1.php?type=findnew",
data:key, //我想把变量key的值当数据发送给php,这里不知道怎么写才能把变量key的值发给php
success:function(key){
//这里我想获取到php回调的两个数据(new_title,new_class的值),然后反馈给前段修改主页面内容?
console.log(key);
},
error:function(e){
console.error(e);
}
});
//console.log(key);
})
}
)
php:
$type=@$_GET['type'];
$sleword=@$_GET['data'];//这里获取js发过来的数据
switch ($type) {
case findnew:
$sql="select new_title,new_class from info_look";//这里的语句,我想把变量$sleword当作条件加到where后面即select new_title,new_class from info_look where new_calss=$sleword这样子,具体要怎么写才能在sql语句里应用变量sleword?
$keyword=mysql_query($sql);//执行语句
$wordArray=[];//创建空字符串承载获取到的数据
while($row=mysql_fetch_array($keyword)){
//$wordArray=$row;
//这里能不能return回调$sql查询到的new_title,new_class给js,然后让js插入到指定的页面标签中去?
}
//print_r($wordArray);
break;
}
问题都写在注释里面了,新人问题,所以有想法不对的地方谢谢大家指出,如果可以的话希望大家帮我看看在我现在想的这种方法上要怎么写,谢谢
$.ajax
参数再加一个字段dataType: 'json'
,然后在php里把你想传给js的数据用json_encode
函数做成 json 字符串echo
或者die
出去就行了。