script
文章平均质量分 51
zxz_1991
这个作者很懒,什么都没留下…
展开
-
layui 弹窗的iframe 父子界面相互传值
1.父界面向子界面传值 [1].父界面打开子界面:function show_layer(){layer.open({ type: 2, area: [w+'px', h +'px'], fix: false, //不固定 maxmin: true, shadeClose: true, shade:0.4, title: title, content: url,转载 2020-11-29 14:26:12 · 723 阅读 · 0 评论 -
layer.open 打开新的模板,添加富文本框,并传值
//js文件layer.open({ type: 2, title: '添加协议', shadeClose: true, shade: 0.8, area: ['50%', '90%'], closeBtn: 1, conten...原创 2019-10-31 14:12:44 · 1300 阅读 · 0 评论 -
js判断对象是否存在
实例如下: if (typeof(obj) == "undefined") { // 操作语句} 如果typeof(obj) == "undefined" 为true则该对象不存在,当前脚本还没有定义该对象其他的写法要注意: // 这种方法不起作用if (x == undefined) // 操作语句 // 这个方法同样不起作用- 必转载 2014-03-21 11:28:26 · 562 阅读 · 0 评论 -
js url编码解码函数 decodeURIComponent encodeURIComponent
decodeuricomponent() 函数可对 encodeuricomponent() 函数编码的 URL进行解码。例子:var test1="http://www.111cn.net/my first/"document.write(encodeuricomponent(test1)+ "")结果http%3a%2f%2fwww.111cn.net%2fmy%2原创 2015-07-14 16:00:50 · 410 阅读 · 0 评论 -
通过JS、JQ,实现对json数据调取,并循环展示到页面
通过JS、JQ,实现对json数据调取,并循环展示到页面 $(document).ready(function(){ data=$.ajax({url:"获取json链接地址",async:false}); data2 = data.responseText; var data2 = JSON.parse(data2); var data3 =data2.原创 2015-07-14 16:07:19 · 7938 阅读 · 0 评论