iframe サブフォームに親フォームのアドレス バー パラメータ (クエリ文字列) を取得させます
<スクリプト タイプ=" text/javascript">
function f(){
//http://localhost:4101/MyFiles/netshop/ShopType.aspx?tid=1
var url = window.location. href; //アドレスバーを取得します
var pos = url.indexOf("tid");//単純な文字列処理、ここにはパラメータが 1 つだけあります。
var tid = url.substring(pos 4);//tid= の後の文字列を取得するため、 4
document.getElementById("gv_frame").src = "ShopType.aspx?tid=" tid; 🎜>}