1.1常见的JavaScript库 · jQuery· Prototype· YUI· Dojo· Ext JS· 移动端的zepto 这些库都是对原生JavaScript的封装,内部都是用JavaScript实现的 2.jQuery 下载 官网:http://jquery.com 版本: · 1x ...
分类:
Web程序 时间:
2020-08-29 15:18:38
阅读次数:
70
报这个错是因为package.json中配置项lint少了 --fixed把lint 修改如下就好了 "lint": "eslint --fix --ext .js,.vue src", 补充:如果使用VS code编译器装有JS-CSS-HTML插件,将其插件拆卸就ok了 ...
分类:
其他好文 时间:
2020-07-09 15:11:59
阅读次数:
155
添加属性 selModel:new Ext.selection.CheckboxModel({ checkOnly: true }), me.grid = Ext.create('Ext.grid.Panel', { store: me.store, border: false, //selType ...
分类:
Web程序 时间:
2020-06-17 20:31:38
阅读次数:
66
添加监听事件:afterlayout listeners: { afterlayout: function (grid) { debugger; var records = grid.getStore().getRange(); for (var i = 0; i < records.length; ...
分类:
Web程序 时间:
2020-06-17 20:28:06
阅读次数:
65
//练习sparkstreaming监听socket端口 //手写wordcount java代码 package com.swust.streaming; import org.apache.spark.SparkConf; import org.apache.spark.api.java.Jav ...
分类:
其他好文 时间:
2020-04-23 11:49:08
阅读次数:
59
ESLint fix自动修复所有格式问题 "lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue src/ test/unit test/e2e/specs", npm run lint-fix ...
分类:
其他好文 时间:
2020-04-17 23:21:30
阅读次数:
81
BOM和DOM BOM浏览器对象模型 window.open(url,'','width=400px,height=400px') window.opener() 子页面能够直接通过该方法调用父页面中的函数 window.close() window.location.href 获取当前网页所在的u ...
分类:
其他好文 时间:
2019-09-10 19:37:51
阅读次数:
105
1、numberfield textfield用法 textfield的用法示例 name:字段名称,绑定和获取数据的时候用到 fieldLabel:显示的标签 value:控件的值 allowBlank:能否为空,true为必填项,false为可以为空 maxValue:最大值 minValue: ...
分类:
Web程序 时间:
2019-05-10 20:23:17
阅读次数:
349
{ iconCls: 'zyl_icons_showdetail', tooltip: '查看', handler: function(gridView, rowIndex, colIndex) { var rowInfo = gridView.up('grid... ...
分类:
Web程序 时间:
2019-03-29 14:45:23
阅读次数:
173
Read1方法是通过使用MessageBox.wait()方法实现进度条。wait()方法有三个参数msg:String类型,用来显示弹出框内容;title:String类型,弹出框的标题,该参数不是必须的;config:Object类型,进度条的配置,该参数不是必须的。Read2方法是使用Mess ...
分类:
Web程序 时间:
2018-10-31 20:07:04
阅读次数:
237