`
backspace
  • 浏览: 137135 次
文章分类
社区版块
存档分类
最新评论

jQuery:1.[1

 
阅读更多
ylbtech-jQuery:jQuery学习

jQuery语法实例

$(this).hide()
jQuery 的 hide() 函数,隐藏当前的 HTML 元素。
$("p").hide()
jQuery 的 hide() 函数,隐藏所有 <p> 元素。
$(".test").hide()
jQuery 的 hide() 函数,隐藏所有 class="test" 的元素。
$("#test").hide()
jQuery 的 hide() 函数,隐藏 id="test" 的元素。
 

Hiding - Sliding- Fading

jQuery fadeOut()
简单的 jQuery fadeout() 函数。
jQuery hide()
简单的 jQuery hide() 函数。
Hide explanations
如何隐藏部分文本。
Slide panel
简单的 Slide Panel 效果。
jQuery animate()
简单的 jQuery animate() 函数。
 
jQuery:1.1.1,$(this).hide()返回顶部
<html>
<head>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
  $(this).hide();
});
});
</script>
</head>

<body>
<button type="button">Click me</button>
<hr>
test
<button type="button">Click me2</button>
<button type="button">Click me3</button>
<button type="button">Click me4</button>
</body>

</html>
jQuery:1.1.2,$("p").hide()返回顶部
<html>
<head>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>

<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">Click me</button>
</body>
</html> 
jQuery:1.1.3,$(".test").hide() 返回顶部
<html>
<head>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
  $("button").click(function()
  {
  $(".test").hide();
  });
});
</script>
</head>
<body>

<h2 class="test">This is a heading</h2>
<p class="test">This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type="button">Click me</button>

</body>
</html>
jQuery:1.1.4,$("#test").hide() 返回顶部
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("#test").hide();
  });
});
</script>
</head>

<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p id="test">This is another paragraph.</p>
<button type="button">Click me</button>
</body>

</html>
jQuery:1.2.1,fadeOut()返回顶部
<html>
<head>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#test").click(function(){
  $(this).fadeOut();
  });
});
</script>
</head>

<body>
<div id="test" style="background:yellow;width:200px">CLICK ME AWAY!</div>
<p>如果您点击上面的框,它会淡出。</p>
</body>

</html>
jQuery:1.2.2.hide()返回顶部
<html>

<head>
<script type="text/javascript" src="Jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("p").click(function(){
  $(this).hide();
  });
});
</script>
</head>

<body>
<p>If you click on me, I will disappear.</p>
</body>

</html> 
jQuery:1.2.3,explanations返回顶部
<html>
<head>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".ex .hide").click(function(){
$(this).parents(".ex").hide("slow");
});
});
</script>
<style type="text/css"> 
div.ex
{
background-color:#e5eecc;
padding:7px;
border:solid 1px #c3c3c3;
}
</style>
</head>
 
<body>

<h3>Island Trading</h3>
<div class="ex">
<button class="hide" type="button">Hide me</button>
<p>Contact: Helen Bennett<br /> 
Garden House Crowther Way<br />
London</p>
</div>

<h3>Paris Trading</h3>
<div class="ex">
<button class="hide" type="button">Hide me</button>
<p>Contact: Marie Bertrand<br /> 
265, Boulevard Charonne<br />
Paris</p>
</div>

</body>
</html>
jQuery:1.2.4,panel返回顶部
<html>
<head>

<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
$(".flip").click(function(){
    $(".panel").slideToggle("slow");
  });
});
</script>
 
<style type="text/css"> 
div.panel,p.flip
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.panel
{
height:120px;
display:none;
}
</style>
</head>
 
<body>
 
<div class="panel">
<p>W3School - 领先的 Web 技术教程站点</p>
<p>在 W3School,你可以找到你所需要的所有网站建设教程。</p>
</div>
 
<p class="flip">请点击这里</p>
 
</body>
</html>
jQuery:1.2.5,animation返回顶部
<html>
<head>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
  $("#start").click(function(){
  $("#box").animate({height:300},"slow");
  $("#box").animate({width:300},"slow");
  $("#box").animate({height:100},"slow");
  $("#box").animate({width:100},"slow");
  });
});
</script> 
</head>
 
<body>

<p><a href="#" id="start">Start Animation</a></p>

<div id="box"
style="background:#98bf21;height:100px;width:100px;position:relative">
</div>
 
</body>
</html>

 

warn 作者:ylbtech
出处:http://ylbtech.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
0
4
分享到:
评论

相关推荐

    jquery.color.js

    1. **颜色转换**:jQuery.color.js支持多种颜色格式之间的转换,如RGB、RGBA、HSL、HSLA等,这使得在处理不同颜色模型时更加灵活。 2. **颜色动画**:提供`animate()`方法,可以实现颜色属性的平滑过渡,例如改变...

    jquery手册(jquery.cuishifeng.cn网页版)2

    1. **选择器**: jQuery的选择器允许你高效地选取DOM元素,如`$("#id")`选取ID为指定值的元素,`$(".class")`选取所有class为指定值的元素,`$("tag")`选取所有特定类型的元素。 2. **DOM操作**: jQuery提供了简便的...

    jquery.media.js.zip

    1. **引入依赖**:首先确保引入jQuery库,然后引入jQuery.media.js插件文件。 ```html &lt;script src="path/to/jquery.js"&gt; &lt;script src="path/to/jquery.media.js"&gt; ``` 2. **初始化媒体元素**:使用jQuery选择器选择...

    最新jquery-2.1.1.js以及jquery-2.1.1.min.js文件

    1. **选择器**:jQuery提供了丰富的CSS选择器,使得开发者可以通过简单的语法获取DOM元素,如`$("#id")`、`$(".class")`、`$("tag")`等。 2. **DOM操作**:jQuery提供了便利的方法来创建、修改、添加和删除DOM元素...

    Jquery.media.js插件

    Jquery.media.js插件,包含三个文件:jquery.media.js、jquery-1.7.2.min.js、demo.html demo文件如下: &lt;html&gt; &lt;head&gt; [removed][removed] [removed][removed] [removed] $(function() { $('....

    jquery-3.0.0.js 、jquery-3.0.0.min.js 【官方jquery包 js】

    1. 兼容性:jQuery 3.0.0对浏览器的兼容性进行了全面升级,支持现代浏览器的同时,也保留了对旧版IE的兼容,确保代码能在广泛的应用场景中正常运行。 2. 性能提升:3.0.0版本对内部算法进行了优化,提高了代码执行...

    jquery-2.1.4.js 、jquery-2.1.4.min.js 【jquery包 js】

    1. **DOM操作**:jQuery提供了丰富的选择器,如ID选择器、类选择器等,使得选取DOM元素变得简单。此外,还可以方便地进行元素的添加、删除和修改。 2. **事件处理**:通过`.on()`方法,可以方便地绑定和解绑事件,...

    jquery.cookie.js,jquery.min.js

    1. **jQuery**: jQuery是一个广泛使用的JavaScript库,它简化了DOM操作、事件处理、动画效果和Ajax交互。在压缩包中,我们有两个jQuery相关的文件——`jquery.min.js`和`jquery-1.11.0.min.js`。`jquery.min.js`可能...

    jquery-1.12.4-jquery.min.js.zip

    1. **DOM操作**:jQuery 提供了一套丰富的选择器,可以方便地选取DOM元素,如$("#id")用于选取ID为id的元素,$(".class")用于选取所有class为class的元素。此外,它还提供了链式操作,如$("#element").addClass(...

    jquery.marquee.js官方下载

    1. **方向控制**:支持上下左右四个方向的滚动,可以自由选择元素内容的滚动方向。 2. **速度调整**:允许设置滚动速度,以满足不同场景的需求,创造快慢有致的效果。 3. **暂停与继续**:可以通过事件或方法实现...

    jquery-3.2.0.js,jquery-3.2.0.min.js

    ### 1. jQuery 核心特性 **DOM 操作:** - **选择器(Selectors)**:jQuery 提供了类似 CSS 的选择器,如 `$("#id")` 用于选取 ID 为 id 的元素,`$(".class")` 用于选取所有 class 为 class 的元素。 - **属性...

    jQuery/jquery-1.7.2.min.js jquery-1.7.2.js 文件

    1. `jquery-1.7.2.js`是未压缩的源代码版本,代码可读性较高,便于开发者阅读、学习和调试。在开发过程中,为了便于理解和定位问题,通常会使用这种未压缩的版本。 2. `jquery-1.7.2.min.js`则是经过压缩和优化的...

    jquery.countdown.js自定义倒计时代码.zip

    1. 引入jQuery库:确保你的HTML文件中已经引入了jQuery,因为这个插件依赖于jQuery环境。 2. 引入`jquery.countdown.js`:将插件的JavaScript文件链接到HTML页面中。 3. 创建HTML元素:在页面中创建一个元素(如`...

    jquery.page.js下载

    1. 确保引入的jQuery版本与`jquery.page.js`兼容,避免出现运行错误。 2. 考虑性能问题,只对需要应用平滑滚动的元素调用`.page()`方法。 3. 在移动设备上使用时,应考虑触摸事件的支持和优化。 总结,`jquery.page...

    jQuery.extend和jQuery.fn.extend的区别

    1. `jQuery.extend`用于合并和扩展对象,可以进行浅拷贝或深拷贝,通常用于配置选项的合并。 2. `jQuery.fn.extend`用于向jQuery对象添加新的方法,增强了jQuery的功能性,使我们可以自定义jQuery插件。 理解这两个...

    jquery-2.0.3.js和jquery-2.0.3.min.js

    与1.x系列相比,jQuery 2.0.x最大的变化在于移除了对IE6、7、8这些旧版Internet Explorer浏览器的支持。这一决策使得2.0系列可以去除大量为兼容老版本IE而编写的代码,从而显著提高了代码的执行效率。对于现代浏览器...

    jquery回到顶部插件jquery.goup.js

    1. 引入jQuery库和jquery.goup.js文件:首先确保页面已经引入了jQuery,然后将jquery.goup.js文件添加到页面底部。 2. HTML结构:在HTML中添加返回顶部按钮的占位符,通常放在的最后,例如: ```html 返回顶部 ``` ...

    jquery 1.12.4 .min.js 含源码

    jquery 1.12.4 .min.js 含源码 包含以下文件: jquery.1.12.4.min.js jquery.1.12.4.js // 这个是源码哦 截至2017.11.21, jQuery1.x 最新最稳定版本

    jquery-2.0.0.js 、jquery-2.0.0.min.js 【官方jquery包 js】

    - **更快的速度**:由于去除了对旧版IE的支持,jQuery 2.0.0的执行速度相比1.x版本有所提升,尤其在DOM操作、事件处理和动画效果方面。 - **更小的体积**:移除对旧IE的兼容性代码,使得文件大小显著减小。如`...

    JQuery颜色渐变插件jquery.color.js

    这段代码会将ID为`myElement`的元素的背景颜色在1秒钟内平滑地从当前颜色渐变到蓝色。这里的时间参数(1000)代表动画的持续时间,单位是毫秒。 `jquery.color.js`不仅支持基本的颜色名称,还支持十六进制、RGB、...

Global site tag (gtag.js) - Google Analytics