headerでLocationする時のtarget指定について

Posted by admin | JavaScript, PHP | 水曜日 12 3月 2008 12:37 PM

headerでLocationする時のtarget指定について

やり方はJavaScriptでやる方法等何種類かあるみたい。

PHP参考url:
http://ml.php.gr.jp/pipermail/php-users/2002-August/009477.html



<form action="" target="_top" method="post">



JavaScript参考url:
http://oshiete1.goo.ne.jp/qa1789095.html



if ( self != top ) { top.location = self.location; }