<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="mytest.aspx.cs" Inherits="CrazyAuchan.mytest" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="Script/core/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(function(){
$("#btnok").click(function(){
show();
});
$("#loading").click(function () {
hide();
});
});
</script>
</head>
<body>
<form />
<div >
页面加载中...</p>
</div>
<script type="text/javascript">
function show()
{
$("#loading").show();
}
function hide(){
$("#loading").hide();
}
</script>
</div>
</form>
</body>
</html>