安卓手机:htnl5页面中js方法
有3个页面(index.html和count.html以及show.html)如下:
<!DOCTYPE html>
<html>
<head>
<title>index页面</title>
<script type="text/javascript">
function showCon_GM(urll,str) {
$("#ifdiv").fadeIn(500); //窗口
$("#wrap").fadeOut(500); //桌面
$("#conF").attr("src", urll + str);
}
</script>
</head>
<body>
<div data-role="footer" id="ifdiv" style="width: 100%; height: auto;">
<iframe id="conF" src="count.html" name="conF" scrolling="no"></iframe>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>count页面</title>
<script type="text/javascript">
function GotoPhoneLists(obj) {
var where =$(obj).data("");
if (where != "k") {
window.parent.showCon_GM("show.html","?Where=" + where);
closeThis();
}
}
</script>
</head>
<body>
<div class="cts" data-k="k" onclick="GotoPhoneLists(this)">
<div class="cts00"></div>
<div class="cts1"> <span></span></div>
</div>
</body>
</html>
刚刚接触html5.。。略有不懂。。。。
现在的问题是这样的:所有的页面(除了举例的这几个页面外),主要用了“ window.parent”的方法,都不执行“ window.parent”代码,有没有什么其他的方法来带替这个?目的就是重设父页面iframe的scr所显示的网页。在安卓手机,安卓平板机上,“window.parent”都不执行。有没有什么可以代替的?只要能够从子页面调用父页面的js方法(除window.parent外)就可以。
补充:Java , 非技术区