码迷,mamicode.com
首页 > 其他好文 > 详细

Dom元素的属性常用操作汇总

时间:2020-02-20 17:16:20      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:删除指定元素   return   class   func   padding   常用   fun   hit   指定元素   

2月20日汇总:

元素的属性操作:1.$(function(){ $(‘‘#box).attr(‘class‘,‘box‘)});

2.$(‘#box‘).attr({‘title‘:‘标题‘,‘class‘:‘box‘}) 添加多个通过定义对象添加;$("#box").attr("title",function(){ return ‘必须哦‘}) 函数有返回值;

3.$("#box").removeAttr(‘title‘)删除指定元素属性;

4.$(function(){ alert($("#box").css(‘width‘))}) 或$(‘#box‘).css([‘width‘,‘height‘]) 获取到的是一个对象

5.$("#box").css(‘color‘,function(){ return ‘#fff‘});

6. $("#pox").click(function(){ $(this).toggleClass(‘f30 white‘)}) 来回切换 ;

7.$(‘#pox‘).click(function(){ $(this).toggleClass(‘true‘) var count=0; count++%2==0;})

8.$("#pox").innerwidth() $("#pox").innerheight() 指的width/height+padding

9.$("#pox").outerwidth() $("#pox").outerheight() width/height+padding+border

10.$("#pox").outerwidth(true) $("#pox").outerheight(true) width/height+padding+border+margin

Dom元素的属性常用操作汇总

标签:删除指定元素   return   class   func   padding   常用   fun   hit   指定元素   

原文地址:https://www.cnblogs.com/wensx/p/12336183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!