我試圖讓下面的代碼只顯示在特定頁面上,但是當我點擊某些頁面,比如主頁或者其他任何不使用這段代碼的頁面時,我會得到如下警告(「發生了一些錯誤,請稍後再試」);。JQuery警報問題?
如何在不使用此JQuery代碼的頁面上顯示警告框並仍然有代碼工作?
我正在使用JQuery,PHP & MySQL。
這裏是JQuery代碼。
$(document).ready(function() {
// get average rating
getRatingText();
// get average rating function
function getRatingText(){
$.ajax({
type: "GET",
url: "../../../update.php",
data: "do=getavgrate",
cache: false,
async: false,
success: function(result) {
// add rating text
$("#rating-text").text(result);
},
error: function(result) {
alert("some error occured, please try again later");
}
});
}
// 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 dynamically
$("#current-rating").css({ width: "" + result + "%" });
// add rating text dynamically
$("#rating-text").text(getRatingText());
},
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");
}
});
});
});
是否有一個PHP代碼可以做到這一點,因爲我在我的PHP包含這個代碼。 – gReEdY 2010-02-18 22:15:57