JQuery中如何获取样式属性的值?
如我想要获取样式名为“top”的div层的背景图片的url值,那么我在<script></script>中该如何写。代码如下:<html><head><scripttyp...
如我想要获取样式名为“top”的div层的背景图片的url值,那么我在<script></script>中该如何写。
代码如下:
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<style>
.top{background:url(Tupian.jpg) no-repeat;width:75px;height:90px;}
</style>
<script></script>
</head>
<body>
<div class="top"></div>
</body>
</html> 展开
代码如下:
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<style>
.top{background:url(Tupian.jpg) no-repeat;width:75px;height:90px;}
</style>
<script></script>
</head>
<body>
<div class="top"></div>
</body>
</html> 展开
3个回答
推荐于2017-09-28
展开全部
css方法:
1、取得第一个段落的color样式属性的值。
$("p").css("color");
2、将所有段落的字体颜色设为红色并且背景为蓝色。
$("p").css({ color: "#ff0011", background: "blue" });
<html>
<head>
<title>JQuery中如何获取样式属性的值</title>
<script type="text/javascript" src="jquery.js"></script>
<style>
.top {
background: url(Tupian.jpg) no-repeat;
width: 75px;
height: 90px;
}
</style>
<script type="text/javascript">
$(function () {
var url = $("div.top").css("background-image");
alert(url);
})
</script>
</head>
<body>
<div class="top"></div>
</body>
</html>
展开全部
$("div.top").css("background-image");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-20
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询