iframe 하위 양식이 상위 양식 주소 표시줄 매개변수(querystring) <스크립트 유형을 가져오도록 합니다. =" text/javascript">
function f(){
//http://localhost:4101/MyFiles/netshop/ShopType.aspx?tid=1
var url = window.location. href; //주소 표시줄 가져오기
var pos = url.indexOf("tid");//간단한 문자열 처리, 여기에는 매개변수가 하나만 있습니다.
var tid = url.substring(pos 4);//tid= 뒤에 문자열을 가져오므로 4
document.getElementById("gv_frame").src = "ShopType.aspx?tid=" tid; 🎜>}
/iframe>