我在 PHP 中有一个代码,如下所示:
$rate = "<div class=\"example-\" href=\"#\" onclick=\"wallpost(".$id.")\"></div></br>;
和像这样的jQuery:
$('.example-').ratings(5).bind('ratingchanged', function(event, data) {
function wallpost(pass){
var a = pass;
}
$.post('count.php',{rate:data.rating,wallpostid :a},function(data){
alert(data);
});
});
我想在对 jquery 进行评分时传递 $id 值,然后使用 $.post 将 $id 值和我对“count.php”评分的星数传递给“count.php”。
当我尝试上面的代码时,它无法评分。
我的问题是什么?