首页 >

js怎么改变css属性值

web前端|js教程js怎么改变css属性值
JavaScript,CSS属性
web前端-js教程
安卓rss阅读器源码,ubuntu实现ftp系统,go爬虫cookie设置,php mailto,谷歌seo制作lzw
1.用JS修改标签的 class 属性值:
高仿社区app源码下载,ubuntu 找回引导项,scrapy爬虫抓取视频,php 颜色转换,seo 公司 国内lzw
class 属性是在标签上引用样式表的方法之一,它的值是一个样式表的选择符,如果改变了 class 属性的值,标签所引用的样式表也就更换了,所以这属于第一种修改方法。
卷皮源码带优惠卷功能,vscode下载黑色主题,ubuntu关闭外网,面向消息tomcat,sqlite支持多连接吗,前端布局一般用框架还是手写,知乎问题爬虫可视化,php不输出,化工原料SEO,网站后台文件名,订货移动版网页源码,登录ui模板lzw
更改一个标签的 class 属性的代码是:

document.getElementById(id值).className = 字符串;

document.getElementById( id ) 用于获取标签对应的 DOM 对象,你也可以用其它方法获取。className 是 DOM 对象的一个属性,它对应于标签的 class 属性。字符串 是 class 属性的新值,它应该是一个已定义的CSS选择符。

利用这种办法可以把标签的CSS样式表替换成另外一个,也可以让一个没有应用CSS样式的标签应用指定的样式。

举例:

.txt {font-size: 30px; font-weight: bold; color: red;}
欢迎光临!

function setClass(){document.getElementById( “tt” ).className = “txt”;}

2.用JS修改标签的 style 属性值:

style 属性也是在标签上引用样式表的方法之一,它的值是一个CSS样式表。DOM 对象也有 style 属性,不过这个属性本身也是一个对象,Style 对象的属性和 CSS 属性是一一对应的,当改变了 Style 对象的属性时,对应标签的 CSS 属性值也就改变了,所以这属于第二种修改方法。

更改一个标签的 CSS 属性的代码是:

document.getElementById( id ).style.属性名 = 值;

document.getElementById( id ) 用于获取标签对应的 DOM 对象,你也可以用其它方法获取。style 是 DOM 对象的一个属性,它本身也是一个对象。属性名 是 Style 对象的属性名,它和某个CSS属性是相对应的。

说明:这种方法修改的单一的一个CSS属性,它不影响标签上其它CSS属性值。

举例:

欢迎光临!

function setSize(){document.getElementById( “t2” ).style.fontSize = “30px”;}function setColor(){document.getElementById( “t2” ).style.color = “red”;}function setbgColor(){document.getElementById( “t2” ).style.backgroundColor = “blue”;}function setBd(){document.getElementById( “t2” ).style.border = “3px solid #FA8072”;}

方法:

document.getElementById(“xx”).style.xxx中的所有属性是什么

盒子标签和属性对照
CSS语法(不区分大小写)JavaScript语法(区分大小写)
borderborder
border-bottomborderBottom
border-bottom-colorborderBottomColor
border-bottom-styleborderBottomStyle
border-bottom-widthborderBottomWidth
border-colorborderColor
border-leftborderLeft
border-left-colorborderLeftColor
border-left-styleborderLeftStyle
border-left-widthborderLeftWidth
border-rightborderRight
border-right-colorborderRightColor
border-right-styleborderRightStyle
border-right-widthborderRightWidth
border-styleborderStyle
border-topborderTop
border-top-colorborderTopColor
border-top-styleborderTopStyle
border-top-widthborderTopWidth
border-widthborderWidth
clearclear
floatfloatStyle
marginmargin
margin-bottommarginBottom
margin-leftmarginLeft
margin-rightmarginRight
margin-topmarginTop
paddingpadding
padding-bottompaddingBottom
padding-leftpaddingLeft
padding-rightpaddingRight
padding-toppaddingTop
颜色和背景标签和属性对照
CSS 语法(不区分大小写)JavaScript 语法(区分大小写)
backgroundbackground
background-attachmentbackgroundAttachment
background-colorbackgroundColor
background-imagebackgroundImage
background-positionbackgroundPosition
background-repeatbackgroundRepeat
colorcolor
样式标签和属性对照
CSS语法(不区分大小写)JavaScript 语法(区分大小写)
displaydisplay
list-style-typelistStyleType
list-style-imagelistStyleImage
list-style-positionlistStylePosition
list-stylelistStyle
white-spacewhiteSpace
文字样式标签和属性对照
CSS 语法(不区分大小写)JavaScript 语法(区分大小写)
fontfont
font-familyfontFamily
font-sizefontSize
font-stylefontStyle
font-variantfontVariant
font-weightfontWeight
文本标签和属性对照
CSS 语法(不区分大小写)JavaScript 语法(区分大小写)
letter-spacingletterSpacing
line-breaklineBreak
line-heightlineHeight
text-aligntextAlign
text-decorationtextDecoration
text-indenttextIndent
text-justifytextJustify
text-transformtextTransform
vertical-align

verticalAlign

【推荐学习:javascript高级教学】


js怎么改变css属性值
  • 找媒介盒子这个平台的话 - CSS - 前端,用css设计如下表格
  • 找媒介盒子这个平台的话 - CSS - 前端,用css设计如下表格 | 找媒介盒子这个平台的话 - CSS - 前端,用css设计如下表格 ...

    js怎么改变css属性值
  • 什么样的头像才是你喜欢的头像呢 - CSS - 前端,css3 从下出现动画
  • 什么样的头像才是你喜欢的头像呢 - CSS - 前端,css3 从下出现动画 | 什么样的头像才是你喜欢的头像呢 - CSS - 前端,css3 从下出现动画 ...

    js怎么改变css属性值
  • 请问怎么从北京宠物领养站领养动物 - CSS - 前端,css??
  • 请问怎么从北京宠物领养站领养动物 - CSS - 前端,css?? | 请问怎么从北京宠物领养站领养动物 - CSS - 前端,css?? ...