上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
  2021年7月21日
摘要: str = "12345.00"; str = str.slice(0, -1); console.log(str);或者 let str = "12345.00"; str = str.substring(0, str.length - 1); console.log(str); 阅读全文
posted @ 2021-07-21 16:47 wakaka_wka 阅读(396) 评论(0) 推荐(0)
  2021年6月17日
摘要: --disable-web-security 不要强制执行同源策略。(由测试他们网站的人使用。) --homepage 指定将在新打开的选项卡中显示的页面。我们需要将其用于测试目的,以便UI测试不依赖于http://google.com的内容 --ignore-certificate-errors 阅读全文
posted @ 2021-06-17 11:18 wakaka_wka 阅读(640) 评论(0) 推荐(0)
  2021年6月16日
摘要: gc.getView().bufferedRenderer.scrollTo(0, false);gc.plugins to get the plugin grid.getView().bufferedRenderer.scrollTo(0, false, function () { grid.ge 阅读全文
posted @ 2021-06-16 10:03 wakaka_wka 阅读(65) 评论(0) 推荐(0)
摘要: https://www.formget.com/chrome-extension-inject-javascript/ How to Inject JavaScript Using Chrome Extension | FormGet 阅读全文
posted @ 2021-06-16 09:46 wakaka_wka 阅读(29) 评论(0) 推荐(0)
  2021年6月1日
摘要: [{},{},...].findIndex(function(x){return x.属性名=='属性值'}) 返回值 >=0 表示存在 阅读全文
posted @ 2021-06-01 10:24 wakaka_wka 阅读(125) 评论(0) 推荐(0)
  2021年5月28日
摘要: e.record.reject 阅读全文
posted @ 2021-05-28 10:04 wakaka_wka 阅读(77) 评论(0) 推荐(0)
  2021年5月27日
摘要: Ext.define('Ext.ux.form', { extend: 'Ext.form.Panel', listeners: { 'beforeadd': function(){ if (!field.allowBlank) { field.labelClsExtra = 'x-required 阅读全文
posted @ 2021-05-27 12:32 wakaka_wka 阅读(169) 评论(0) 推荐(0)
  2021年5月19日
摘要: // 全局 import Vue from 'vue'; Vue.forceUpdate(); // 使用组件实例 export default { methods: { methodThatForcesUpdate() { // ... this.$forceUpdate(); // ... } 阅读全文
posted @ 2021-05-19 14:31 wakaka_wka 阅读(835) 评论(0) 推荐(0)
  2021年5月8日
摘要: c_Tid.setFieldStyle('background-color: #ddd; background-image: none;'); 阅读全文
posted @ 2021-05-08 18:45 wakaka_wka 阅读(308) 评论(0) 推荐(0)
  2021年5月5日
摘要: gc.getStore().getTotalCount();//总条数,不一定全部已加载可以是分页计算结果得到的总条数但是页面只加载第一页 gc.getStore().currentPage;//当前页号 gc.getStore().getProxy().extraParams; 阅读全文
posted @ 2021-05-05 18:20 wakaka_wka 阅读(63) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页