jquery css事件编程 尺寸设置

Posted yangzailu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery css事件编程 尺寸设置相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>jquery css事件编程  尺寸设置</title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  <style type="text/css"> 
        div{position:absolute;width:100px;height:100px;left:100px;top:100px;border:1px solid red;}
  </style>
  <script  type="text/javascript" src="jquery-1.7.1.min.js"></script>
  <script type="text/javascript">
    /* 尺寸操作 
        width()   //获取宽度
        width(value) //设置宽度
        height //获取高度
        height(value)  //设置高度
    */
        window.onload=function(){
            $(#btnOk).click(function(){
                $(#div1).width(500);
                $(#div1).height(600);
            });
        };
  </script>
 </head>
 <body>

    <div id="div1">test1</div>

 <input type="button" id=‘btnOk‘ value=‘确定‘  />
 </body>
</html>

 

以上是关于jquery css事件编程 尺寸设置的主要内容,如果未能解决你的问题,请参考以下文章

使用jQuery对象:DOM属性CSS尺寸遍历DOM操作事件特效

测试Markdown

jquery进阶

jQuery 学习03——HTML:捕获设置添加元素删除元素CSS类CSS()方法尺寸

Jquery详解

jQuery元素的尺寸位置和页面滚动事件