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


    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

  • 相关阅读:
    序列操作
    上帝造题的七分钟2 / 花神游历各国
    火柴排队
    pair(对组)用法
    线段树
    链上分治
    Rem与Px的转换
    css中单位px和em,rem的区别
    css网页自适应-1
    css网页自适应-2
  • 原文地址:https://www.cnblogs.com/wensx/p/12336183.html
Copyright © 2020-2023  润新知