0

I need your quick help.

In my web site I have a list of clients with links to their user details.

I used

window.open();return false;

and this opens each profile in new window.

  1. now in the new opening window I have link, which I want to open in another new window/

I tried

window.opener.open();return false;

but it opened in this same window.

How can it be opened in another new window(FF,explorer)??.

  1. I want also to use the above code with Ajax, in my search page. The problem is, that it also not opening the new window because the link located in the Ajax. how can i open links from Ajax in new window??

Any ideas?

Thanks!!!

4

4 に答える 4

0

つまり、次のようになります。(1)リンクのあるページ->(2)リンクのあるポップアップを開く->(3)別のポップアップを開く

ポップアップを開かなければならないすべてのリンクは、javascript関数window.openを呼び出します。@Sushilが指摘したように、新しいウィンドウを通常のポップアップのように表示する必要がある場合は、幅と高さを設定します。

AJaxを使用してポップアップを実装する場合は、jQueryを使用します。これは、単純なポップアップ実装の非常に良い例です。

于 2012-11-04T14:20:12.210 に答える
0

開く高さと幅を提供します。これにより、新しいウィンドウが常にポップアップとして開くようになります。

window.open(url, 'name', "height=500,width=700"); return false;
于 2012-11-04T14:07:59.140 に答える
0

window オブジェクトから window.parent にアクセスして、別のウィンドウを開く関数を呼び出すことができます。

于 2012-11-04T14:08:08.267 に答える
0

開いたウィンドウで Window.open() を使用します。

于 2012-11-04T14:10:55.897 に答える