如果没有 JS 警报,在加载时更改 ASP.NET 中的光标将不起作用
我想在我的 ASP.NET 应用程序中将光标更改为沙漏,让我的用户知道该进程正在运行。我搜索了答案,并被建议使用 JavaScript,如下所示:
添加此 JavaScript:
函数沙漏() { document.body.style.cursor = "等待"; }
然后在页面加载事件中的我的代码中:
btnImport.Attributes.Add("onclick", "javascript: hourglass();");
其中 btnImport 是他们单击的按钮。
然而这不起作用。如果我给沙漏功能添加一个警报。它确实有效。有什么方法可以让它在没有警报的情况下工作吗?
I want to change the cursor to an hourglass in my asp.net application to let my users know that the process is running. I searched for an answer and was advised to use JavaScript as follows:
Add this JavaScript:
function hourglass() { document.body.style.cursor = "wait"; }
then in my code in the page load event:
btnImport.Attributes.Add("onclick", "javascript: hourglass();");
Where btnImport is the button they click on.
However this does not work. If I add an alert to the hourglass function. it does work. Is there some way to get this to work without the alert?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个怎么样:
How about this:
它是一个 Ajax-Web 应用程序吗?然后,您可以使用 UpdateProgress Control 在用户时显示正在等待导入完成。
Is it an Ajax-Webapp? Then you could use an UpdateProgress Control to show while the user is waiting till import finished.