0

我之前问过同样的问题。但它在 CHROME 上仍然有错误,但它在 IE 上运行良好。父 html 调用 mycoupon3.jsp 作为弹出窗口,如果选择了弹出窗口中的一行,它会将 INNERHTML 发送到父 html。

问题是,弹出窗口中的数据未处理到父 html。在 chrome 调试工具上说 Uncaught TypeError: Cannot read property 'tot' of undefined on "opener.document.joinform.all["tot"].innerHTML"。弹出窗口也不会self.close。

我认为 all["tot"] 与 chrome 不兼容。于是改成了 opener.document.joinform.getelementbyid["tot"].innerHTML,但是没有运气。

这是代码。

<parent html>

 <td id="tot" class="text_orange"><%=NumberFormat.getInstance().format(cmbean.getTotal())%> USD</td>

 <a href="javascript: mycoupon()"><img src="/images/main/mycoupon_btn.gif" border="0"></a>


<script>

var new_window_handle;  

function mycoupon() {     
new_window_handle = window.open("my_coupon3.jsp?amt=<%=pay_price2%>", 'coupon_win', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes, resizable=no,width=780,height=540'); 
} 

</script>   

<my_coupon3.jsp> * POPUP window

<script>
function sel_coupon(c_id, amt) {
var tot = opener.document.joinform.Org_totalprice.value ;
tot = String( Number(tot) - Number(amt) ) ;
opener.document.joinform.totalprice.value = tot;
opener.document.joinform.coupon_id.value = c_id ;
opener.document.joinform.all["tot"].innerHTML = maskNum    (opener.document.joinform.Org_totalprice.value) + "USD - " + maskNum(amt) +" USD &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b><font color='red'>TOTAL : " + maskNum(tot) + " USD</font></b> ";
opener.cal_payment_money() ;
self.close();
}
</script>

<a href="javascript: sel_coupon('BGG30055901', '3000')"> Apply This coupon</a>
4

1 回答 1

0

getElementById不是对象,而是函数。叫它:

document.getElementById('tot')

请注意,您必须将其应用于document; 个别元素没有getElementById。这也是使用的问题.all;虽然 Chrome 支持all是为了与为 Internet Explorer 设计的页面兼容,但它只支持它作为document.

于 2012-06-27T22:18:37.403 回答