该例子中需要在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();//关闭子窗口
}