版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。http://blog.csdn.net/mayongzhan - 马永占,myz,mayongzhan
<!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>
<meta http-equiv="Content-Language" content="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="马永占(MyZ)" />
<meta name="Copyright" content="马永占(MyZ)" />
<meta name="description" content="" />
<meta name="keywords"content="" />
<link rel="icon" href="" type="image/x-icon" />
<link rel="shortcut icon" href="" type="image/x-icon" />
<link href="" rel="stylesheet" type="text/css" />
<title></title>
<style type="text/css">
</style>
<script type="text/javascript" src="jquery-1.2.6.js"></script>
</head>
<body>
<script type="text/javascript">
$("document").ready(function(){
////////////////////////////////////////////////////////////////////////////////////////
//CSS:
//css( name ) Returns: String
//Return a style property on the first matched element.
// $("div").click(function () {
// var color = $(this).css("background-color");
// $("#result").html("That div is <span style='color:" +
// color + ";'>" + color + "</span>.");
// });
//css( properties ) Returns: jQuery
//Set a key/value object as style properties to all matched elements.
// $("p").hover(function () {
// $(this).css({'background-color' : 'yellow', 'font-weight' : 'bolder'});
// }, function () {
// var cssObj = {
// 'background-color' : '#ddd',
// 'font-weight' : '',
// 'color' : 'rgb(0,40,244)'
// }
// $(this).css(cssObj);
// });
//css( name, value ) Returns: jQuery
//Set a single style property to a value on all matched elements.
// $("p").mouseover(function () {
// $(this).css("color","red");
// });
////////////////////////////////////////////////////////////////////////////////////////
//Positioning:
//offset( ) Returns: Object{top,left}
//Get the current offset of the first matched element relative to the document.
//var p = $("p:last");
//var offset = p.offset();
//p.html( "left: " + offset.left + ", top: " + offset.top );
//position( ) Returns: Object{top,left}
//Gets the top and left position of an element relative to its offset parent.
//var p = $("p:first");
//var position = p.position();
//$("p:last").text( "left: " + position.left + ", top: " + position.top );
//scrollTop( ) Returns: Integer
//Gets the scroll top offset of the first matched element.
//var p = $("p:first");
//$("p:last").text( "scrollTop:" + p.scrollTop() );
//scrollTop( val ) Returns: jQuery
//When a value is passed in, the scroll top offset is set to that value on all matched elements.
//$("div.demo").scrollTop(300);
//scrollLeft( ) Returns: Integer
//Gets the scroll left offset of the first matched element.
//var p = $("p:first");
//$("p:last").text( "scrollLeft:" + p.scrollLeft() );
//scrollLeft( val ) Returns: jQuery
//When a value is passed in, the scroll left offset is set to that value on all matched elements.
//$("div.demo").scrollLeft(300);
////////////////////////////////////////////////////////////////////////////////////////
//Height and Width:
//height( ) Returns: Integer
//Get the current computed, pixel, height of the first matched element.
// function showHeight(ele, h) {
// $("div").text("The height for the " + ele +
// " is " + h + "px.");
// }
// $("#getp").click(function () {
// showHeight("paragraph", $("p").height());
// });
// $("#getd").click(function () {
// showHeight("document", $(document).height());
// });
// $("#getw").click(function () {
// showHeight("window", $(window).height());
// });
//height( val ) Returns: jQuery
//Set the CSS height of every matched element.
// $("div").one('click', function () {
// $(this).height(30)
// .css({cursor:"auto", backgroundColor:"green"});
// });
//width( ) Returns: Integer
//Get the current computed, pixel, width of the first matched element.
// function showWidth(ele, w) {
// $("div").text("The width for the " + ele +
// " is " + w + "px.");
// }
// $("#getp").click(function () {
// showWidth("paragraph", $("p").width());
// });
// $("#getd").click(function () {
// showWidth("document", $(document).width());
// });
// $("#getw").click(function () {
// showWidth("window", $(window).width());
// });
//width( val ) Returns: jQuery
//Set the CSS width of every matched element.
// $("div").one('click', function () {
// $(this).width(30)
// .css({cursor:"auto", "background-color":"blue"});
// });
//innerHeight( ) Returns: Integer
//Gets the inner height (excludes the border and includes the padding) for the first matched element.
//var p = $("p:first");
//$("p:last").text( "innerHeight:" + p.innerHeight() );
//innerWidth( ) Returns: Integer
//Gets the inner width (excludes the border and includes the padding) for the first matched element.
//var p = $("p:first");
//$("p:last").text( "innerWidth:" + p.innerWidth() );
//outerHeight( options ) Returns: Integer
//Gets the outer height (includes the border and padding by default) for the first matched element.
//var p = $("p:first");
//$("p:last").text( "outerHeight:" + p.outerHeight() + " , outerHeight(true):" + p.outerHeight(true) );
//outerWidth( options ) Returns: Integer
//Get the outer width (includes the border and padding by default) for the first matched element.
//var p = $("p:first");
//$("p:last").text( "outerWidth:" + p.outerWidth()+ " , outerWidth(true):" + p.outerWidth(true) );
////////////////////////////////////////////////////////////////////////////////////////
});
</script>
</body>
</html>
分享到:
相关推荐
jQuery API for DW 是针对Dreamweaver CS3和CS4的扩展插件,旨在为Web开发者提供更方便地在Dreamweaver环境中使用jQuery库的功能。这个压缩包包含两个文件:jQuery_api_for_dw3.mxp和jQuery_api_for_dw4.mxp,分别...
在本篇中,我们将深入探讨如何在Dreamweaver中安装jQuery插件jQuery_API.mxp,以及这个插件对开发者的工作带来的便利。 首先,我们要明确的是,jQuery_API.mxp是一个专为Dreamweaver设计的插件,它的主要作用是集成...
**jQuery API 深度解析** jQuery 是一个广泛使用的 JavaScript 库,它简化了网页的DOM操作、事件处理、动画设计以及Ajax交互。这个“jquery_api.rar”压缩包包含了一份详细的jQuery API参考文档(jquery_api.chm)...
- jQuery选择器基于CSS,如`$("#id")`选择ID为id的元素,`$(".class")`选择所有class为class的元素,`$("tag")`选择所有tag标签的元素。此外,还有更多的高级选择器如`:first`, `:last`, `:even`, `:odd`, `:...
在前端开发领域,CSS、CSS3、jQuery以及EasyUI是常用的技术栈,它们各自提供了丰富的API,用于构建高效、响应式且美观的用户界面。以下是对这些技术的详细阐述: **CSS (Cascading Style Sheets)** 是一种样式表...
jQuery的核心之一就是其强大的选择器系统,它基于CSS1到CSS3的选择器,并扩展了一些特有的选择器。如: 1. `#id`:通过ID查找元素。 2. `.class`:通过类名查找元素。 3. `tag`:通过标签名查找元素。 4. `...
jQuery 1.3 在原有的 CSS 选择器基础上进行了扩展,支持更多的标准 CSS3 选择器,如 `:nth-child()`, `:nth-of-type()`, `:first-child` 和 `:last-child` 等,使得开发者能够更精确地选取页面元素。 ### 2. DOM ...
**jQuery 1.4 API 知识点详解** jQuery 是一个高效、易用且功能丰富的JavaScript库,极大地简化了HTML文档遍历、事件处理、动画设计以及Ajax交互。jQuery 1.4 API 提供了一系列的方法和函数,使得开发者能够更方便...
jQuery API for DW3是专为Adobe Dreamweaver CS3设计的一款插件,旨在简化Web开发者在Dreamweaver环境中使用jQuery库的过程。这个插件的目的是提高开发效率,通过直观的界面和集成的功能,使得非JavaScript专家也能...
1. **函数和方法提示**:当你在编辑器中输入jQuery符号"$"或"jQuery"时,插件会提供一个下拉菜单,列出所有可用的jQuery函数和方法,如`$(document).ready()`、`.click()`、`.css()`等。 2. **参数提示**:在选择...
1. 下载jQuery API for DWCS5插件压缩包,解压后会得到一个包含`jQueryAPI使用方法.txt`、`shared`、`codehints`和`Extensions`目录的文件结构。 2. 打开Dreamweaver CS5,选择“编辑”> “首选项”> “扩展”。 3. ...
《jQuery API.CHM\JQuery_3.exe 帮助文档》是针对JavaScript库jQuery的详细参考资料,旨在为开发者提供全面、深入的API指南。这个压缩包包含了两个关键文件:`jquery_api.chm`和`jquery_3.exe`,它们分别以不同的...
**jQuery API 概述** jQuery 是一个广泛使用的 JavaScript 库,它简化了 HTML 文档遍历、事件处理、动画设计和Ajax交互。由于其简洁易用的语法,jQuery 已经成为了网页开发中的一个基石。这个名为“jquery_api.rar...
**jQuery 1.4 API 中文版** jQuery 是一个广泛使用的JavaScript库,它极大地简化了JavaScript编程,特别是在处理网页中的DOM操作、事件处理、动画效果和Ajax交互方面。`jQuery_1.4_API (chm中文版)` 提供的是jQuery...
《jQuery 3.3.1 API 中文文档》是一个针对jQuery 3.3.1版本的中文参考手册,旨在帮助开发者深入理解和高效使用这个广泛应用于Web开发的JavaScript库。jQuery以其简洁、强大的语法特性,极大地简化了DOM操作、事件...
1. **选择器(Selectors)**:jQuery的选择器基于CSS,允许开发者快速选取页面中的元素。例如,`$("#id")`选取ID为id的元素,`$(".class")`选取所有class为class的元素。 2. **DOM操作(DOM Manipulation)**:...
在Dw5这样的早期Web开发工具中,结合JQueryAPI文档的使用,可以更好地实现动态效果和交互性。 JQuery API(应用程序接口)文档详细介绍了JQuery的各种函数和方法,这些功能包括: 1. **选择器(Selectors)**:...
《jQuery API详解与实践应用》 jQuery,一个广泛应用于Web开发的JavaScript库,以其简洁的API和强大的功能深受开发者喜爱。jQuery_API文档是开发者的重要参考资料,它详细地介绍了jQuery的各种方法、选择器、事件、...
《jQuery 1.4 API中文手册》是针对JavaScript库jQuery的1.4版本提供的一份详细参考资料。jQuery是一个广泛使用的JavaScript库,它极大地简化了HTML文档遍历、事件处理、动画设计以及Ajax交互等任务。这份CHM文件包含...
**jQuery 1.4 API 手册:深入理解与应用** jQuery 是一个高效、简洁的JavaScript库,它极大地简化了JavaScript编程,特别是处理HTML文档、事件处理、动画以及Ajax交互。中文版的jQuery 1.4 API手册是开发者学习和...