摘要:
参考文献:http://www.360doc.com/content/15/0905/17/9261962_497072422.shtml 阅读全文
摘要:
var canClick = true;$("#button").click(function(){ if(!canClick ){ return false } canClick = false; // 一、请求接口时获取返回值后才可以点击 $.post(url,data,(res) => { c 阅读全文
摘要:
main.js中 Vue.prototype.Trim = function(str) { return str.replace(/(^\s*)|(\s*$)/g, ""); } 使用 let str = " 123456789 " Trim(str) // "123456789" 阅读全文