`
南山忍者
  • 浏览: 85779 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

对jQuery中的return false的理解

阅读更多

 

      1、遇到的问题。

 

     这是一个Html网页,很简单。

       代码-1

<!DOCTYPE html>

<html lang="en">
  <head>
    <meta charset="utf-8">
	  <title>Abraham Lincoln's Gettysburg Address</title>

    <link rel="stylesheet" href="04.css" type="text/css" />

    <script src="jquery.js"></script>
    <script src="04.js"></script>
  </head>
  <body>
    <div id="container">
      <h2>Abraham Lincoln's Gettysburg Address</h2>
      <div id="switcher">
        <div class="label">Text Size</div>
        <button id="switcher-default">Default</button>
        <button id="switcher-large">Bigger</button>
        <button id="switcher-small">Smaller</button>
      </div>
      <div class="speech">
        <p>Fourscore and seven years ago our fathers brought forth on this continent a new nation, conceived in liberty, and dedicated to the proposition that all men are created equal.</p>
        <p>Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battlefield of that war. We have come to dedicate a portion of that field as a final resting-place for those who here gave their lives that the nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we cannot dedicate, we cannot consecrate, we cannot hallow, this ground.</p>
        <a href="www.baidu.com" class="more">read more</a>
        <p>The brave men, living and dead, who struggled here have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember, what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced.</p>
        <p>It is rather for us to be here dedicated to the great task remaining before us&mdash;that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion&mdash;that we here highly resolve that these dead shall not have died in vain&mdash;that this nation, under God, shall have a new birth of freedom and that government of the people, by the people, for the people, shall not perish from the earth.</p>
      </div>
    </div>
  </body>
</html>

 

 

 代码-2

     

$(document).ready(function(){
	$('p').eq(1).hide();		
	$('a.more').click(function(){
		$('p').eq(1).show('slow');
		$(this).hide();
		return false;
	});
});

 

 

   代码-2中的JS代码很简单,就是让第二个的<P/>元素中的内容先隐藏,点击锚元素(就是<a/>元素),则将隐藏的内容展示出来。

     但是在JS代码的最后,有一句:

 

 

return false;

 的代码。该代码的作用就是去掉锚元素的默认行为。

 

 

2、分析

 

     在jQuery中return false其本质是:抑制了元素的冒泡事件,及抑制了元素的默认行为。

 

  说得直白点:

      

“return false”=“stopPropagation()”+“preventDefault()”;

   即:在方法的最后使用了return false,就相当于对事件对象同时调用了stopPropagation()和preventDefault()。

    

   【注】:stopPropagation()是阻止事件冒泡方法,

                 preventDefault()是阻止元素的默认行为的方法。

 

  所以,代码-2的JS代码实际上可以这样写:

 

   

$(document).ready(function(){
	$('p').eq(1).hide();		
	$('a.more').click(function(eventObject){
		$('p').eq(1).show('slow');
		$(this).hide();
		eventObject.stopPropagation();
		eventObject.preventDefault();
	});
});

 

分享到:
评论

相关推荐

    JavaScript使用forEach()与jQuery使用each遍历数组时return false 的区别

    理解`forEach()`和`.each()`在处理`return false`时的不同行为非常重要,因为这会影响到你的代码逻辑。`.each()`的`return false`相当于`break`,而`forEach()`的`return false`仅相当于`continue`。如果你需要中断`...

    学习jQuey中的return false

    总之,理解并恰当使用`return false`、`.preventDefault()` 和 `.stopPropagation()` 是编写高效、可控的jQuery事件处理代码的关键。根据实际情况选择合适的方法,可以有效地控制事件的执行流程,提高用户体验。

    jquery注册用户验证

    这个"jqueryRegister"示例可能包含了上述的完整流程,帮助开发者理解如何使用jQuery来创建一个用户友好的注册表单,进行前端数据验证,以及如何与后端进行数据交互。通过学习这个示例,你可以提升在实际项目中处理...

    jQuery用户注册表单验证代码

    首先,我们需要理解jQuery的基本使用。在HTML文档中引入jQuery库后,可以通过"$"符号来调用其方法。例如,`$(document).ready()`函数确保在页面加载完成后再执行里面的代码,这样可以避免因DOM未完全加载而引发的...

    jquery拖动图片移动拼图小游戏

    return false; } } return true; } if (isGameWon()) { alert("恭喜,你赢了!"); } ``` 综上所述,这个基于jQuery的拖动图片移动拼图小游戏充分利用了jQuery库的功能,实现了用户友好的交互体验。通过理解...

    jquery.form中文API

    return false; // 阻止普通表单提交和页面刷新 }); ``` 3. **formSerialize**: - 此方法将整个表单序列化为一个查询字符串,如`name1=value1&name2=value2`的格式。 - 不是可链式调用的方法,返回一个字符串...

    jquery表单验证插件

    return false; // 阻止默认提交行为 }); ``` ##### 4.4 实例:序列化表单 ```javascript var queryString = $('#myFormId').formSerialize(); $.post('myscript.php', queryString); ``` #### 五、详细API说明 - ...

    浅析jquery数组删除指定元素的方法:grep()

    在开发中,我们常常需要对数组进行操作,其中就包括删除数组中的指定元素。在JavaScript中,原生提供的`splice()`方法是一种常用的方式,它通过指定的索引位置来删除元素。然而,在某些情况下,使用`splice()`方法...

    2014-10-04-深入理解jQuery(2)——Callbacks1

    nction(context, args) { if (fired) { return this; } if (!options.once || !firing) { firing = true; fired = true;...通过理解并实现类似的功能,我们可以更好地理解和应用jQuery的这一特性。

    用过的jQuery插件

    本文将重点探讨jQuery插件的基本原理,并通过分析一个实际的插件——jBox,来深化对jQuery插件的理解。 首先,我们需要了解jQuery插件的基本结构。一个简单的jQuery插件通常包括两个主要部分:方法(Methods)和...

    jquery 隐藏显示行

    在网页开发中,jQuery 是一个广泛使用的 JavaScript 库,它极大地简化了 JavaScript 的操作,包括隐藏和显示元素。本文将深入探讨如何利用 jQuery 实现表格行的隐藏与显示功能,同时也会涉及到一些基本的 HTML 和 ...

    jquery插件jquery.cycle轻松实现图片效果!

    在本文中,我们将深入探讨如何利用 jQuery Cycle 实现图片效果,并讨论其核心功能和用法。 1. **安装与引入**: 在开始使用 jQuery Cycle 之前,你需要确保已经安装了 jQuery。如果还没有,可以从 jQuery 官方网站...

    JQuery对checkbox的操作 (01).zip

    本教程将深入探讨jQuery如何对HTML中的checkbox元素进行操作,以提高用户体验和页面交互性。 首先,我们需要理解HTML中的checkbox。Checkbox是用户界面中的一种常见元素,用于让用户在多个选项中选择一个或多个。每...

    jquery验证表单

    3. **验证函数**:在提交事件的处理函数中,我们对每个需要验证的输入字段进行检查。例如,验证一个必填的文本框可以这样写: ```javascript if ($('#username').val().trim() === '') { alert('用户名不能为空')...

    jquery ajax return没有返回值的解决方法

    在使用jQuery的$.ajax()方法时,遇到的问题通常是由于对AJAX异步执行的理解不深,导致无法正确处理返回值。 在异步操作中,如果在$.ajax()中直接返回一个值,这个返回值并不会直接传递到调用$.ajax()方法的地方。这...

    jquery upload ajax方式

    在给定的压缩包文件`jQuery-File-Upload-master`中,包含了一个强大的jQuery插件——jQuery File Upload。这个插件提供了更丰富的功能,如多文件上传、文件预览、拖放支持、进度条等。使用该插件,可以极大地简化...

    使用jQuery的AJAX验证用户名

    get { return false; } } } ``` 然后在jQuery中调用这个处理程序: ```javascript $.get('ValidateUsername.ashx', { username: 'testUser' }, function(response) { if (response === 'available') { // ...

Global site tag (gtag.js) - Google Analytics