English 中文(简体)
j 开放的流行窗口,在另一页加插其成分
原标题:js open popup window and acces its element in another page

我的 j窗是个问题。

我在另一页打开了一席之地,试图查阅其中的内容,但没有成功,而且我不想重载人口来源,我只想获得一个开放的人群。

Ex -

  • 1st page - opened popup with html5 music player
  • 2nd page - need to pause the music when user click on button on main page

1st page

var popup = window.open("test.html","mypopup","width=500,height=300");

第2页 我不想再用人满为患的窗子,而不必再用人满。

I only need the way how to access opened popup elements without interrupting its sources using JS or JQuery

最佳回答

萨米血统(主要、港口和礼宾)?

Plain JS:

页 次

var popup = window.open("test.html","mypopup","width=500,height=300");
popup.document.getElementById("player").someFunction();

第2页

var popup = window.open(  , mypopup );
// now popup is known again
popup.document.getElementById("player").someFunction();
问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签