如何在ASP.net和C#中显示Fragment#onAttach()
,等待时间,然后关闭窗口?
代码:
alert
答案 0 :(得分:0)
你可以这样做:
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage",
"alert('insert done ......');window.setTimeout(window.close, 1000);", true);
请注意它是window.close
没有括号,因为windows.setTimeout
需要一个函数,超时用毫秒表示,所以它是1000。
参考:https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/setTimeout