demo.js
jquery(document).ready(function ($) {
if (window.history && window.history.pushstate) {
$(window).on('popstate', function () {
var hashlocation = location.hash;
var hashsplit = hashlocation.split("#!/");
var hashname = hashsplit[1];
if (hashname !== '') {
var hash = window.location.hash;
if (hash === '') {
alert("希望该网站能提供你帮助!");
}
}
});
window.history.pushstate('forward', null, './#forward');
}
});
demo.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no">
<title>新建h5自适应模板</title>
<script src="jquery-1.10.1.min.js"></script>
<script src="demo.js"></script>
</head>
<body>
<h3>阅谁问君诵,水落清香浮。</h3>
</body>
</html>