zoukankan      html  css  js  c++  java
  • jQuery 操作

    addClass() - 向被选元素添加一个或多个类
    removeClass() - 从被选元素删除一个或多个类
    toggleClass() - 对被选元素进行添加/删除类的切换操作
    css() - 设置或返回样式属性<br/>

    width() 方法设置或返回元素的宽度(不包括内边距、边框或外边距)。
    height() 方法设置或返回元素的高度(不包括内边距、边框或外边距)。

    innerWidth() 方法返回元素的宽度(包括内边距)。
    innerHeight() 方法返回元素的高度(包括内边距)。

    outerWidth() 方法返回元素的宽度(包括内边距和边框)。
    outerHeight() 方法返回元素的高度(包括内边距和边框)。

     1 <script>
     2     $(function(){
     3         $("button").click(function(){
     4             $("p").addClass("blue");
     5         })
     6     })
     7     $(document).ready(function(){
     8         $("button").click(function(){
     9             var text="";
    10             text+="width of div:"+$("#div1").width()+"</br>";
    11             text+="height of div:"+$("#div1").height();
    12             $("#div1").html(text);
    13 
    14         })
    15 
    16         $("button").click(function(){
    17             var txt="";
    18             txt+=""+$("#div1").width()+"</br>";
    19             txt+="height:"+$("#div1").height();
    20 
    21             txt+=""+$("#div1").innerWidth()+"</br>";
    22             txt+="height:"+$("#div1").innerHeight();
    23 
    24             txt+=""+$("#div1").outerWidth()+"</br>";
    25             txt+="height:"+$("#div1").outerHeight()
    26             $("#div1").html(txt);
    27         })
    28 
    29     })
    30 </script>



  • 相关阅读:
    python【第五篇】常用模块学习
    (三)训练HMM模块
    (二)杂项准备
    (四)看看成果
    (一)准备训练语音文件
    HTK语音识别示例(Ubuntu)
    RoboCup仿真3D TC笔记(2014年合肥中国公开赛 仿真3D比赛环境搭建)
    WebFont与页面font-icon图标研究
    Font Awesome使用方法
    css sprites拼合
  • 原文地址:https://www.cnblogs.com/amy-1205/p/5848859.html
Copyright © 2011-2022 走看看