我有包含 iframe(此 iframe 内的子页面)的 html 页面(父页面),此 java 脚本函数获取我想使用内部页面链接滚动 iframe 的位置。
function scrollToAnchor ()
{ //function parseParameter return the query string value from the url
var anchor = parseParameter(window.location.href,'anchor');
if (anchor != null)
{
location.hash=anchor;
}
}
but anchor value in iframe page source not in parant page,
这无法滚动 iframe 页面。如何通过父页面滚动 iframe 页面,
它在 IE 中有效,Crome
但在firefox
. 此代码有任何替代方案。请建议。我的页面网址是
http://localhost:8989/schoolforms/SelectForm?formTypeID=STUDENT_EMERGENCY
这是我window.location.href"
的 iframe 价值
http://localhost:8088/schoolforms/StudentEmergency?student=B874BCC3EA5B83670988C959E9F0036B&anchor=InsuranceInfo
解析anchor containsInsuranceInfo
之后,这个函数url就变成了
http://localhost:8088/schoolforms/StudentEmergency?student=B874BCC3EA5B83670988C959E9F0036B&anchor=InsuranceInfo#InsuranceInfo