layer.open 打开一个html页面,content应该怎么传值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layer.open 打开一个html页面,content应该怎么传值相关的知识,希望对你有一定的参考价值。
有以下两种传值方式:
第一种:页面元素自带的值,或者是moudle分配值,传递到html中,以下是moudle分配置值的一种方式:
第二种:通过js获取相关的值,写入内容content中,以下是案例:
<input type="hidden" id="idl" value="内容部分" />
<script>
var my_content = $('#idl').val();
layer.open(
type: 2,//类型
maxmin: true,
title: '标题',//窗口名字
content: my_content
);
</script>
扩展资料
在编辑html文件和使用有关标记符时有一些约定或默认的要求。
HTML源程序为文本文件,其列宽可不受限制,即多个标记可写成一行,甚至整个文件可写成一行;若写成多行,浏览器一般忽略文件中的回车符(标记指定除外);对文件中的空格通常也不按源程序中的效果显示。
参考技术A //请参考资料 http://www.layui.com/doc/modules/layer.html//例子
/**打开一个HTML窗口**/
function openHtml(title,width,height,content)
layer.open(
type: 1,//这就是定义窗口类型的属性
title: title,
shadeClose: true,
shade: 0.3,
offset: "20%",
shadeClose : false,
area: [width, height],
content: content//'传入任意的文本或html' //这里content
//是一个普通的String 比如:"<div>哈哈</div>"
);
/**打开一个IFRAME窗口**/
function openIframe(title,width,height,content)
layer.open(
type: 2,
title: title,
shadeClose: true,
shade: 0.3,
offset: "20%",
shadeClose : false,
area: [width, height],
content: content//传入一个链接地址 比如:http://www.baidu.com
);
参考技术B 打开一个页面的话应该是转职的话也是可以成功转职的。
layer.open Iframe弹窗 除了地址栏传参,怎么给子页面传递参数
参考技术A iframe弹窗访问父页面API典型例var index = parent.layer.getFrameIndex(window.name); //获取窗口索引
类似弹窗html通语句获取父页面某容器值:
parent.$('#父页面元素id').val();
所需弹窗open前(父页面html代码)先值放容器(比input)弹窗html代码用述script获取值并输容器放隐藏modal面访问者完全见本回答被提问者采纳
以上是关于layer.open 打开一个html页面,content应该怎么传值的主要内容,如果未能解决你的问题,请参考以下文章