摘要:
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 ... 阅读全文
摘要:
1 A页面跳转时候的地址: 2 parent.layer.open({ 3 type: 2, 4 title:'新建草稿', 5 shadeClose: true, 6 shade: 0.8, 7 scrol... 阅读全文
摘要:
1 $.post('/manage.aa', function (response) { 2 agentList = response.data; 3 }, 'json'); 4 var categoryId; 5 $.get("/flow/flowDfne/queryFloRR.DD", {}, function (data) { 6 ... 阅读全文
摘要:
$(document).on('mouseenter', '#paramsFather .layui-form-selected dl dd', function () { var data = $(this).attr('lay-value').split('||')[1]; data = data != 'null' ? data : '无'; layer.tips('描述... 阅读全文
摘要:
1 var delArry = [];//1.声明一个空数组用来存放数据; 2 for (var prop in nodes) {2.遍历存放数据的数组对象nodes; 3 if (nodes.hasOwnProperty(prop)) {3.如果对象数组有属性prop; 4 if (prop != ... 阅读全文
摘要:
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... 阅读全文
摘要:
Vue.component('todo-item', { template: '\ \ {{ title }}\ X\ \ ', props: ['title'] }) new Vue({ el: '#todo-list-example', data: { newTodoText: ''... 阅读全文
摘要:
//第一种方法 1498627266000 var timestamp1 =Date.parse(new Date()); console.log(timestamp1); //第二种方法 1498627266558 var timestamp2 =(new Date()).valueOf... 阅读全文
摘要:
1 ### Vue.js 五天 1 ### Vue.js 五天 2 3 ## 一、 组件component 4 5 ### 1. 什么是组件? 6 组件(Component)是 Vue.js 最强大的功能之一。组件可以扩展 HTML 元素,封装可重用的代码 7 组件是自定义元素(对象) 8 9 ### 2. 定义组件的方式 ... 阅读全文