- 论坛徽章:
- 0
|
打分用的是网上比较常见的 jRating.jquery.js
里面有段代码是
设置的默认值为
phpPath:'php/jRating.php', // path of the php file jRating.php
$.post(opts.phpPath,{
idBox : idBox,
rate : rate,
action : 'rating'
},
function(data) {
if(!data.error)
{
/** ONLY FOR THE DEMO, YOU CAN REMOVE THIS CODE **/
$('.serverResponse p').html(data.server);
/** END ONLY FOR THE DEMO **/
/** Here you can display an alert box,
or use the jNotify Plugin http://www.myqjqueryplugins.com/jNotify
exemple : */
if(opts.onSuccess) opts.onSuccess();
}
else
{
/** ONLY FOR THE DEMO, YOU CAN REMOVE THIS CODE **/
$('.serverResponse p').html(data.server);
/** END ONLY FOR THE DEMO **/
/** Here you can display an alert box,
or use the jNotify Plugin http://www.myqjqueryplugins.com/jNotify
exemple : */
if(opts.onError) opts.onError();
}
},
'json'
);
这里有个json, $.post的作用,我想应该是见我打完的分数提交到 phpPath 那个jRating.php中。
我应该怎么修改, 才能POST到我的相应的处理函数(url对应的数据处理函数),不知道该怎么办,求好心人帮帮忙!!感激不尽!! |
|