关于从子窗口获取内容并填充到父窗口元素中的方法

 

    该例子中需要在2处点击选择后将该列的酒店名称填充到3中

1.位置2的代码如下:

    <a href="#" hotelName="${res.hotelName!}" hotelId="${res.id!}" οnclick="selectHotel(this);">选择</a>

点击时调用selectHotel(this);方法.并将该列的name和ID属性传入

2.父页面代码:

<input name="hotelRoomInfo.hotelStoreName" readonly="true" type="text" class="inputtext w220" id="hotelStoreName" size="32" maxlength="50"  validate="required:true,minlength:2}" />


<input name="hotelRoomInfo.hotelStoreId" type="hidden" class="inputtext w220" id="hotelStoreId" size="32" maxlength="50" validate="{required:true,minlength:2}" />

 

3.selectHotel方法如下:

function selectHotel(obj){

    var hotel = $(obj);//创建hotel对象接收包含了hotelName和hotelId的参数

    window.parent.document.getElementById(' hotelStoreName ') = hotel.attr("hotelName");

//获得父窗口中的元素,并将从子窗口中获得的名为hotelName的属性填充进去

    window.parent.document.getElementById(' hotelStoreId ') = hotel.attr("hotelId ");

    dialog.closeMe();//关闭子窗口

}

 

 

转载于:https://my.oschina.net/MrBamboo/blog/719531

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值