随笔分类 - javascript
摘要:navigator.clipboard.writeText(‘copy内容’).then( function () { /* clipboard successfully set */ }, function () { /* clipboard write failed */ } );
阅读全文
摘要:1.只能输入数字和小数点 并且小数点不再第一位 和 有且只有一位 oninput="value=value.replace(/^\D*(\d*(?:\.\d{0,2})?).*$/g, '$1')" 2.只能输入数字。如果还需要调用方法或多条规则来限制该输入框,用 ; 隔开 <input type=
阅读全文
摘要:<!DOCTYPE html> <html lang="zh-CN"> <head> <title>image-test</title> <meta charset="utf-8"/> <script src="jquery-2.1.4.js" type="text/javascript"></sc
阅读全文
摘要:(function () { var BSTable = function (bstableId, url, columns,queryParamsType,countSize) { this.btInstance = null; //jquery和BootStrapTable绑定的对象 this.
阅读全文
摘要:1.为什么要监听页面所有ajax请求状态,目前我遇到的哈。接上一任大佬代码,没有对ajax封装,直接使用 $.ajax 从而导致现在对登录失效跳转登录页面问题。 2.废话少说直接上代码。[直接把代码引入到公共js即可] var index = 0; $(document).ajaxComplete(
阅读全文
摘要:1.首页下载先面两个js ( browser-polyfill.js 链接:https://pan.baidu.com/s/1OB5NJZrrSNt8OvxJZ7sX9Q 提取码:yurh browser.js 链接:https://pan.baidu.com/s/1SaHAAiXToT4zOxf1
阅读全文
摘要:var $ax = function (url, success, error) { this.url = url; this.type = "post"; this.data = {}; this.dataType = "json"; this.async = false; this.succes
阅读全文
摘要:1 function canvasDataURL(file, callback) { 2 //图片压缩 仅支持jpg jpeg bmp图片格式 不支持png 3 var reader = new FileReader() 4 reader.readAsDataURL(file) 5 reader.o
阅读全文

浙公网安备 33010602011771号