用参数传递
IFRAME src="a.html?title={dede:field.title /}" /iframe文章源自玩技e族-https://www.playezu.com/138976.html
然后在iframe接到这个参数title赋值给name表的value文章源自玩技e族-https://www.playezu.com/138976.html
可以js获取文章源自玩技e族-https://www.playezu.com/138976.html
获取指定的URL参数值文章源自玩技e族-https://www.playezu.com/138976.html
URL:文章源自玩技e族-https://www.playezu.com/138976.html
参数:paramName URL参数文章源自玩技e族-https://www.playezu.com/138976.html
调用方法:getParam("name")文章源自玩技e族-https://www.playezu.com/138976.html
返回值:bainian文章源自玩技e族-https://www.playezu.com/138976.html
//1.文章源自玩技e族-https://www.playezu.com/138976.html
function getParam(paramName)文章源自玩技e族-https://www.playezu.com/138976.html
paramValue = "";
isFound = false;
if (this.location.search.indexOf("?") == 0 this.location.search.indexOf("=")1)
arrSource = unescape(this.location.search).substring(1,this.location.search.length).split("");
i = 0;
while (i arrSource.length !isFound)
if (arrSource[i].indexOf("=") 0)
if (arrSource[i].split("=")[0].toLowerCase==paramName.toLowerCase)
paramValue = arrSource[i].split("=")[1];
isFound = true;
i++;
return paramValue;
评论