小窓の出し方について教えて下さい。(2)
http://oshiete1.goo.ne.jp/kotaeru.php3?q=568520
先ほどご回答を頂き、小窓の開き方は解決致しました。
↓
<script type="text/javascript"><!--
function subwin(imgsrc,imgalt){
sub1=window.open("","subwin","width=230,height=160,resizable=1");
sub1.document.open();
sub1.document.write("<html><head><title>"+imgalt+"</title></head>");
sub1.document.write("<body style='margin: 0;'>")
sub1.document.write("<img src='"+imgsrc+"' alt='"+imgalt+"'>");
sub1.document.write("</body></html>");
sub1.document.close();
}
//--></script>
body内の、呼び出し部分は、
<a href="#" onClick="subwin('画像ファイルのURL','画像ファイルの説明'); return false;"><img
src="p_1.jpg" border="0" width="70" height="48"></a>
が、クリックして開く小窓に表示させるHTMLファイルで開かせたい
画像が同じページにあります。(大きさは横500縦600)
もう1つ教えて頂いた↓
<script type="text/javascript"><!--
function subwin(file){
window.open(file,"subwin","resizable=1, width=230, height=160");
}
//--></script>
以上をhead内に記述して、呼び出し部分は
<a href="#" onClick="subwin('読み出すHTMLファイルのURL'); return false;"><img
src="p_1.jpg" border="0" width="70" height="48"></a>
のwidth=230, height=160をwidth=500, height=600にして上記ソースに加えると(?)
全部の小窓がwidth=500, height=600になってしまいます。
width=230, height=160の画像で開かせる小窓と
width=500, height=600のHTMLで開かせたい小窓を
同じページに加えるには、どうしたらよいのでしょうか?
ご回答宜しくお願い致します。