- 注册时间
- 2013-8-5
- 最后登录
- 2013-8-20
- 阅读权限
- 10
- 积分
- 164
- 精华
- 0
- 帖子
- 59
|
function setCheckedNodes() {
var tree = mini.get("tree2");
//tree.setValue("ajax,json,date,control,forms");
tree.setValue("forms");
}
=====================
"ajax,json,date,control,forms"
这个数据,我需要从别的页面如何传过来
我采用了
mini.open({
url: "fee.toPrdType.do?ids="+this.getValue(),
title: "多选业务类型",
width: 350,
height: 350,
onload: function () {
var iframe = this.getIFrameEl();
var data = { action: "toPrdType",ids:this.getValue()};
iframe.contentWindow.SetData(data);
}
===树的页面定义了====
function SetData(data){
if (data.action == "toPrdType") {
//显示行详细
//跨页面传递的数据对象,克隆后才可以安全使用
var o = mini.decode(data);
//tree.setValue("3003,3004");
//tree.setValue("forms");
}
}
但是SetData方法得不到data.ids,为什么?
|
|