当前位置: 移动技术网 > IT编程>开发语言>JavaScript > mui back 返回刷新页面的实例

mui back 返回刷新页面的实例

2018年04月22日  | 移动技术网IT编程  | 我要评论

2个页面 模拟

1.html

<!doctype html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<link href="../../css/mui.min.css" rel="external nofollow" rel="external nofollow" rel="stylesheet" />
		<script src="../../../js/mui.min.js"></script>
	</head>
	<body>
		
		<script type="text/javascript" charset="utf-8">
			mui.init()
			mui.plusready(function(){
				alert('1')
//				var self=plus.webview.currentwebview();
//				console.log(json.stringify(self))  
				mui("body").on("tap",".a",function(){
					 mui.openwindow({
					  url:"2.html",
					  id:"a2",
					 })
				})
			});
		</script>
		
		<a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="a">跳到a2</a>
	</body> 
</html>

2.html

<!doctype html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<link href="../../css/mui.min.css" rel="external nofollow" rel="external nofollow" rel="stylesheet" />
		<script src="../../../js/mui.min.js"></script>
	</head>
	<body>
		
		<script type="text/javascript" charset="utf-8">
			mui.init()
			mui.plusready(function(){
//				var self=plus.webview.currentwebview();
//				console.log(json.stringify(self)) 
				var old_back = mui.back;
				mui.back = function() {
					var wobj = plus.webview.getwebviewbyid("hbuilder");//注意 hbuilder 是  1.html 的 id 你如果1.html 有id  要替换掉hbuilder,
					wobj.reload(true);
					old_back()
				}	
			});
		</script>
		
		<a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left">返回刷新</a>
	</body>
</html>

以上这篇mui back 返回刷新页面的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网