 |
รบกวนช่วยดูโค๊ด rating ให้หน่อยนะคะ คืออยากให้มันเก็บค่า Vote ของแต่ละ ID แต่มันเก็บรวมทั้งหมดเลยค่ะไม่รู้ว่าจะต้องไป สั่งว่าให้ไปเก็บไว้ที่ ID นั้นๆยังไงค่ะ |
|
 |
|
|
 |
 |
|
starrating.js
Code (PHP)
// JavaScript Document
$(document).ready(function() {
// get current rating
getRating();
// get rating function
function getRating(){
$.ajax({
type: "GET",
url: "update.php",
data: "do=getrate",
cache: false,
async: false,
success: function(result) {
// apply star rating to element
$("#current-rating").css({ width: "" + result + "%" });
},
error: function(result) {
alert("some error occured, please try again later");
}
});
}
// link handler
$('#ratelinks li a').click(function(){
$.ajax({
type: "GET",
url: "update.php",
data: "rating="+$(this).text()+"&do=rate",
cache: false,
async: false,
success: function(result) {
// remove #ratelinks element to prevent another rate
$("#ratelinks").remove();
// get rating after click
getRating();
},
error: function(result) {
alert("some error occured, please try again later");
}
});
});
});
|
 |
 |
 |
 |
Date :
2013-07-10 16:59:30 |
By :
mrronalz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
รบกวนช่วยดูให้หน่อยนะค่ะ
|
 |
 |
 |
 |
Date :
2013-07-11 11:11:32 |
By :
mrronalz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|

|
 |
 |
 |
 |
Date :
2013-07-12 13:33:37 |
By :
mrronalz |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|