在子窗口中为textarea添加值

时间:2013-02-22 08:50:34

标签: php jquery

我有一个用window.open(url)打开的远程URL,在该页面中有一个textarea,我想从我的父页面更改该textarea的值。

window.open("http://facebook.com/share.php?u=
                http://something.com&t="+txt,'facebook','height=400,width=550'); 

$("textarea#u_0_6").val('test');

谢谢

1 个答案:

答案 0 :(得分:0)

也许你可以这样做。方法很简单,你可以用哈希(#)来传递你的值;

window.open("http://facebook.com/share.php?u=
                http://something.com&t="+txt+"#this is my textarea value",'facebook','height=400,width=550'); 

 $(function() {
   var MyTextAreaValue = window.location.hash;
   $('#u_0_6').val(MyTextAreaValue);
 });