jquery怎么获取背景颜色 jquery怎么设置背景颜色

主机教程 建站分享 2年前 (2022-11-22) 271次浏览

文章摘要:jquery怎么获取背景颜色 jquery怎么设置背景颜色

使用jquery获取背景颜色的方法:1.新建html项目,引入jquery;2.创建div标签,设置id属性; […]

使用jquery获取背景颜色的方法:1.新建html项目,引入jquery;2.创建div标签,设置id属性;3.设置宽高和背景颜色;4.添加button按钮,绑定onclick点击事件;5.通过id获取标签对象,使用css()方法获取背景颜色;

具体步骤如下:

1.首先,新建一个html项目,并在项目中引入jquery;

<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>

2.引入jquery后,在项目中创建一个div标签,并设置id属性,用于测试;

<div id="text"></div>

3.div标签创建好后,为标签设置宽高和背景颜色;

<div id="text" style="width:100px;height:20px;background-color:red"></div>

4.标签样式设置好后,添加一个button按钮,并绑定onclick点击事件,用于点击获取背景颜色;

<button onClick="set()"><button>

5.最后,按钮添加好后,在点击事件中通过id获取标签对象,在使用css()方法即可获取到背景颜色;

function set(){

var res = $("#text").css("background-color");

alert(res);

}


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:jquery怎么获取背景颜色 jquery怎么设置背景颜色
文章链接:http://www.7966.org/post/10718.html
转载请注明出处

喜欢 (0)