码迷,mamicode.com
首页 > Web开发 > 详细

Ajax异步按下回车提交表单

时间:2019-12-07 10:56:57      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:row   数组   false   title   ali   公众号   微信公众号   mit   ext   

作者:故事我忘了
个人微信公众号:程序猿的月光宝盒
技术图片

html

<form id="findInvis">
        帖子标题:
        <input title="请输入帖子标题" name="title">
        <!--input的类型还是submit-->
        <input type="submit" value="搜索" >
</form>

js

/**
 * 点击查找按钮/提交表单,设置提交方法,但是返回false
 */
$("#findInvis").submit(function () {
    //按下回车/提交按钮后的操作
    findBy(1);
    //返回false
    return false;
});

isEmpty()判断input框是否为空

isEmpty:

? 判断函数入参值是否为空,只能用于字符型(string)、对象(object)、数组(array),

? 不适用于数值型和布尔型,举例说明:

  1. 空值: null、‘’(空字符串)、undefined 返回都是true 。

    Ex:

    isEmpty(null) ,isEmpty(‘‘), isEmpty(undefined) 判断结果都是true

    2.boolean类型 true、false 返回都是true 。

? Ex:

isEmpty(true), isEmpty(false) 判断结果都是true

isEmpty(‘true‘), isEmpty(‘false‘) 将参数视为字符串,判断结果都是false

3.number类型 0、1、2 返回都是true

isEmpty(0) , isEmpty(1) , isEmpty(2) 判断结果都是true

isEmpty(‘0‘), isEmpty(‘1‘), isEmpty(‘2‘) 判断结果都是false

Ajax异步按下回车提交表单

标签:row   数组   false   title   ali   公众号   微信公众号   mit   ext   

原文地址:https://www.cnblogs.com/jsccc520/p/12000640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!