使用javascript在新窗口中插入文本

时间:2016-11-01 17:08:52

标签: javascript

我想用Twitter的意图页面创建一个新窗口,然后将文本插入到textarea中。这是我的代码,但它不起作用。

var myWindow = window.open("https://twitter.com/intent/tweet");

myWindow.onload = function() {
  myWindow.document.getElementById("status").innerHTML="Hey you!!";
}

1 个答案:

答案 0 :(得分:3)

您无法使用JavaScript修改其他人网站上的网页。如果可能的话,这将是一个巨大的安全问题。

阅读Twitter's developer documentation。它向您展示了如何为intent设置默认文本:

<a href="https://twitter.com/intent/tweet?text=Hey+you!!">…</a>