jquery 根据值更改字体大小?

发布于 2024-11-05 17:19:06 字数 425 浏览 2 评论 0原文

我有 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);
}

但它似乎不起作用?不知道为什么,似乎是对的......

I have 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);
}

But it doesn't seem to work? Not sure why, seems right...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谈下烟灰 2024-11-12 17:19:06

这会起作用

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() 以查看您的变量返回的内容。

实际上你的代码确实有效,你只是没有调用该函数?请参阅此http://jsfiddle.net/FWPd2/

This will work

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);}

But yes check out firebug for firefox and learn about console.log() to see what your vars are returning.

Actually your code does work, you just didn't call the function perhaps? See this http://jsfiddle.net/FWPd2/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文