1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

クリック時サブウインドウを開くのにハマった(超初歩)

Last updated at Posted at 2018-07-14

##サブウインドウを開く方法

初心者ですみません。
もうあまりサブウインドウ自体使用する機会もあまりないかもしれないけど、
よくわかっていなくて結構な時間はまってしまったのでメモ。
URLにforeachで回してるPHPの変数を入れたかった

<a href="<?php $url;?>" onClick="window.open('<?php $ur;?>','subwindow','width=500,height=500,scrollbars=no')">hogehoge</a>

あほなのですが、これでいけると思ってしまってました。
正しくは下ですね。。。

<script>
function subwindow(url){
window.open(url,'subwindow','width=500,height=500,scrollbars=no');
}
</script>
<a href="<?php $url;?>" target="subwindow" onClick="subwindow('<?php $url;?>');">hogehoge</a>
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?