我有html:
<div class="arrow-inner arrow-first arrow-border">
CAREER <strong>1.000</strong>
</div>
Jquery的:
function battingAve1000(){
var maxBatAve = "1.000";
var batAve = $(".arrow-first strong").html();
if(maxBatAve == batAve)
$(".arrow-first strong").css('font-size', 20);
}
但它似乎不起作用?不知道为什么,似乎没错......
答案 0 :(得分:0)
这将有效
function battingAve1000(){
var maxBatAve = "1.000";
var batAve = $(".arrow-first").find('strong').html();
console.log($(".arrow-first").find('strong').html())
if(maxBatAve == batAve)
$(".arrow-first").find('strong').css('font-size', 20);}
但是请查看firefox的firebug并了解console.log()以查看你的vars返回的内容。
实际上你的代码确实有效,你刚才没有调用该函数?见http://jsfiddle.net/FWPd2/