如果没有 JS 警报,在加载时更改 ASP.NET 中的光标将不起作用

发布于 2024-09-01 11:34:12 字数 415 浏览 3 评论 0原文

我想在我的 ASP.NET 应用程序中将光标更改为沙漏,让我的用户知道该进程正在运行。我搜索了答案,并被建议使用 JavaScript,如下所示:

  1. 添加此 JavaScript:

    函数沙漏() {
        document.body.style.cursor = "等待";
    }
    
  2. 然后在页面加载事件中的我的代码中:

    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:

  1. Add this JavaScript:

    function hourglass() {
        document.body.style.cursor = "wait";
    }
    
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

○闲身 2024-09-08 11:34:12

这个怎么样:

btnImport.Attributes.Add("onclick", "hourglass();");

How about this:

btnImport.Attributes.Add("onclick", "hourglass();");
獨角戲 2024-09-08 11:34:12

它是一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文