如何使用jQuery更改CSS [英] How to change CSS using jQuery

查看:127
本文介绍了如何使用jQuery更改CSS的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用jQuery更改CSS:



  $在里面); function init(){$(h1)。css(backgroundColor,yellow); $(#myParagraph)。css({backgroundColor:black,color:white); $(bordered)。css(border,1px solid black);}  

 < script src =https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js>< / script>< ; div class =bordered> < h1>标题< / h1> < p id =myParagraph>这是一些段落文本< / p>< / div>  

我在这里缺少什么?

解决方案

忽略建议属性名是问题。 jQuery API明确声明可以接受任何一种符号: http://api.jquery.com/css/



实际的问题是你在这行上缺少一个大括号:

  $(#myParagraph)css({backgroundColor:black,color:white); 

更改为:

  $(#myParagraph)。css({backgroundColor:black,color:white}); 

这是一个工作演示: http://jsfiddle.net/YPYz8/


I am trying to change the CSS using jQuery:

$(init);
    
function init() {
    $("h1").css("backgroundColor", "yellow");
    $("#myParagraph").css({"backgroundColor":"black","color":"white");
    $(".bordered").css("border", "1px solid black");
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<div class="bordered">
    <h1>Header</h1>
    <p id="myParagraph">This is some paragraph text</p>
</div>

What am I missing here?

解决方案

Ignore the people that are suggesting that the property name is the issue. The jQuery API explicitly states that either notation is acceptable: http://api.jquery.com/css/

The actual problem is that you are missing a close curly brace on this line:

$("#myParagraph").css({"backgroundColor":"black","color":"white");

Change it to this:

$("#myParagraph").css({"backgroundColor": "black", "color": "white"});

Here's a working demo: http://jsfiddle.net/YPYz8/

这篇关于如何使用jQuery更改CSS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆