在这里,我有一些示例,并且 1.case 中的相同代码不起作用,但在 2.case 中有效。为什么?
所以我需要在 1.case 中工作,就像按钮在 2.case 中一样。
这是js代码:http: //jsfiddle.net/mwsvP/8/
$(".ca_button, .ca_button1,.button").click(function () {
var t = $(this);
$par = t.parent();
$par.find(".ca_button, .ca_button1").css("background-color", "#bababa");
if ($(this).hasClass("ca_button1")) {
t.find("a").css("background-color", "#0F0");
} else if ($(this).hasClass("ca_button")) {
t.find("a").css("background-color", "#F00");
}
});