如何将文本追加到父窗口的textarea?

时间:2013-04-26 10:43:35

标签: javascript appendchild window.opener

我只想将一些字符附加到父窗口的textarea。

str="some character" 

window.opener.document.getElementById('id1').value = str;

它将父窗口的textarea的值更改为“某个字符”..但我想此文本附加到textarea的值。等,

window.opener.document.getElementById('id1').value.append(str); // not working

但它没有用。

我该怎么做?

2 个答案:

答案 0 :(得分:4)

window.opener.document.getElementById('id1').value += str;

答案 1 :(得分:0)

您可以按照以下方式执行此操作。

window.opener.document.getElementById('id1').value = 
window.opener.document.getElementById('id1').value + str;