我能够创建一个测试代码。在 FF 和 chrome 中似乎工作正常(1 次提交),但 IE9(和兼容版本)似乎达到了 1、2 或 3 次。注意: submit() 导致回发。案例 1. Javascript 页面延迟:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>testing</title>
<script type="text/javascript">
function submitForm() {
document.forms[0].submit();
alert("delay");
document.forms[0].submit();
}
</script>
</head>
<body>
<form id="form1" name="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" Width="220px"></asp:TextBox>
<button onclick="submitForm(this)">CLICK</button>
<br />
<asp:Label ID="Label1" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
后面的代码:
protected void Page_Load(object sender, EventArgs e)
{
if(IsPostBack)
{
incrementVal();
}
}
private void incrementVal()
{
var val = (int)(Session["val_" + TextBox1.Text] ?? 0);
val++;
Label1.Text += TextBox1.Text + ": " + val.ToString("00") + " - " + DateTime.Now.ToLongTimeString() + "<br/>";
Session["val_" + TextBox1.Text] = val;
}
案例 2:响应缓慢
删除 JS 警报:
function submitForm() {
document.forms[0].submit();
document.forms[0].submit();
}
在服务器端添加延迟:
if(IsPostBack)
{
incrementVal();
Thread.Sleep(500);
}