我正在编写一些 15 年前的代码,并且有一条线似乎只在 IE 中实际设置并可用。我无法更改该行,因为实际上它们更多并且在其他 asp 页面中引用,我知道,这是一场噩梦。编码:
parent.frmParent.id_item.value = '<%=Request("id_item")%>' //The actual string
//doesn't matter...
我试过了:
var parent.document.getElementById("id_item").Value
var parent.document.getElementById("frmParent")("id_item").Value
我接近了吗?它必须存在于 DOM 中。