随笔分类 - jQuery
摘要:首先引入两个js文件: FileSaver.js: /* * FileSaver.js * A saveAs() FileSaver implementation. * * By Eli Grey, http://eligrey.com * * License : https://github.co
阅读全文
摘要:1、官网jQuery压缩版引用地址: 3.1.1 <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> 3.0.0 <script src="https://code.jquery.com/jquery-3.0.0.m
阅读全文
摘要:原生js拖拽: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta ht
阅读全文
摘要:需求:在1秒内,由一个颜色变到另一个颜色,不是1秒后再变色。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi
阅读全文
摘要:<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <style type="text/css"> div{ width:100px; height:100px; background-color:#CC
阅读全文
摘要:<body> <input type="text" placeholder="只能输入数字"> <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script> <script> $("input").on("inpu
阅读全文
摘要:jQuery获取所有type为text的input:$("input[type='text']") jQuery获取所有除了type为text的input:$("input:not([type=text])") 1、标签选择器 $("div") 2、id选择器 $("#head") 3、class选
阅读全文