上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 45 下一页
摘要: 1 $(document).on("click",".layui-table-body table.layui-table tbody tr",function(){ 2 var obj = event ? event.target : event.srcElement; 3 var tag = obj.tagName; 4 ... 阅读全文
posted @ 2018-06-02 10:31 前端极客 阅读(22088) 评论(1) 推荐(2) 编辑
摘要: 1 A页面跳转时候的地址: 2 parent.layer.open({ 3 type: 2, 4 title:'新建草稿', 5 shadeClose: true, 6 shade: 0.8, 7 scrol... 阅读全文
posted @ 2018-06-01 09:15 前端极客 阅读(3749) 评论(0) 推荐(0) 编辑
摘要: 1 $.post('/manage.aa', function (response) { 2 agentList = response.data; 3 }, 'json'); 4 var categoryId; 5 $.get("/flow/flowDfne/queryFloRR.DD", {}, function (data) { 6 ... 阅读全文
posted @ 2018-06-01 08:58 前端极客 阅读(351) 评论(0) 推荐(0) 编辑
摘要: $(document).on('mouseenter', '#paramsFather .layui-form-selected dl dd', function () { var data = $(this).attr('lay-value').split('||')[1]; data = data != 'null' ? data : '无'; layer.tips('描述... 阅读全文
posted @ 2018-06-01 08:48 前端极客 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 1 var delArry = [];//1.声明一个空数组用来存放数据; 2 for (var prop in nodes) {2.遍历存放数据的数组对象nodes; 3 if (nodes.hasOwnProperty(prop)) {3.如果对象数组有属性prop; 4 if (prop != ... 阅读全文
posted @ 2018-06-01 08:43 前端极客 阅读(727) 评论(0) 推荐(0) 编辑
摘要: 1 table.on('tool(hostTable)', function (obj) { 2 var data = obj.data;//须写 3 if (obj.event === 'del') { 4 var parents = $(this).parents('.elementClass'); 5 operateId = $(p... 阅读全文
posted @ 2018-06-01 08:32 前端极客 阅读(3065) 评论(0) 推荐(0) 编辑
摘要: Vue.component('todo-item', { template: '\ \ {{ title }}\ X\ \ ', props: ['title'] }) new Vue({ el: '#todo-list-example', data: { newTodoText: ''... 阅读全文
posted @ 2018-05-30 22:39 前端极客 阅读(268) 评论(0) 推荐(0) 编辑
摘要: //第一种方法 1498627266000 var timestamp1 =Date.parse(new Date()); console.log(timestamp1); //第二种方法 1498627266558 var timestamp2 =(new Date()).valueOf... 阅读全文
posted @ 2018-05-30 18:59 前端极客 阅读(5651) 评论(0) 推荐(0) 编辑
摘要: 执行下元素刷新 阅读全文
posted @ 2018-05-22 11:38 前端极客 阅读(872) 评论(0) 推荐(1) 编辑
摘要: 1 ### Vue.js 五天 1 ### Vue.js 五天 2 3 ## 一、 组件component 4 5 ### 1. 什么是组件? 6 组件(Component)是 Vue.js 最强大的功能之一。组件可以扩展 HTML 元素,封装可重用的代码 7 组件是自定义元素(对象) 8 9 ### 2. 定义组件的方式 ... 阅读全文
posted @ 2018-05-21 22:48 前端极客 阅读(8599) 评论(0) 推荐(1) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 45 下一页