我有一个用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');
谢谢
答案 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);
});