是否可以将其传递totalScore
var
到另一个页面onclick
以便在那里显示?例如:点击提交链接到 yourscore.html 并在页面上显示分数
$("#process").click(function() {
var totalScore = 0;
$(".targetKeep").each( function(i, tK) {
if (typeof($(tK).raty('score')) != "undefined") {
totalScore += $(tK).raty('score');
}
});
alert("Total Score = "+totalScore);
});