searchプロパティは、現在のURLの?以降の文字列を取得します。 オブジェクト名windowは省略可。 サンプルを見る<script type="text/javascript"> function getdata(){ if(window.location.search){ /* URLの「?」以降のパラメータを変数nに代入 */ var n=window.location.search.substring(1,window.location.search.length); /* テキストボックスにパラメータを表示 */ document.form3.elements["getpram"].value=n; } } /* オンロード時に実行 */ window.onload=getdata; </script> <form name="form3" act