这是我的剧本:
<form action='' method='' onsubmit='refreshpage();'>
<input name='refresh' type="image" SRC="images/Next-Page-Button.gif" HEIGHT="60" WIDTH="173" BORDER="0" value='Refresh'>
</form>
我希望当用户点击“下一页”按钮加载或请等待将弹出,因为下一页需要超过30秒,我希望成员知道该网站正在运行,但也让页面加载后弹出窗口消失。
此外,如果你想看到我的网站上的按钮www.socialmedianetworkexchange.com,那就是点击“赚取喜欢的Facebook”按钮。
答案 0 :(得分:10)
您可以在点击它时在页面上显示一个元素,然后它会自动消失(一旦进入新页面)。这是我刚刚制作的代码:
JavaScript的:
function showLoading() {
document.getElementById('loadingmsg').style.display = 'block';
document.getElementById('loadingover').style.display = 'block';
}
HTML / CSS:
<style type="text/css">
#loadingmsg {
color: black;
background: #fff;
padding: 10px;
position: fixed;
top: 50%;
left: 50%;
z-index: 100;
margin-right: -25%;
margin-bottom: -25%;
}
#loadingover {
background: black;
z-index: 99;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
filter: alpha(opacity=80);
-moz-opacity: 0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
}
</style>
<div id='loadingmsg' style='display: none;'>Redirecting, please wait...</div>
<div id='loadingover' style='display: none;'></div>
<form action='' method='post' onsubmit='refreshpage();showLoading();'>
<input name='refresh' type="image" src="images/Next-Page-Button.gif" height="60" width="173" border="0" value='Refresh'>
</form>
当然,您可以将加载消息更改为您想要的任何内容。
我希望这会有所帮助。如果您有任何问题,请告诉我。
只需将onclick
事件添加到<li>
,例如:
<li onclick="showLoader();">
<a href="facebook.php">
<img src="images/logos/facebooklikeicon.png" height="25" border="0" /> Earn Coins Facebook
</a>
</li>
确保您拥有上面的其他HTML,CSS和JavaScript,以便该功能正常运行。
如果您有任何不理解的部分,请告诉我。