How to change mouse pointer to hour glass on button click in web application? [duplicate]

StackOverflow https://stackoverflow.com/questions/9837879

문제

How to change the mouse pointer to hour glass on button click and back to pointer after loading data in an asp.net web application?

도움이 되었습니까?

해결책

The simple solution is to use JavaScript...

function doHourglass()
{
  document.body.style.cursor = 'wait';
}


<body onbeforeunload="doHourglass();" onunload="doHourglass();"><body 

http://www.codeproject.com/Articles/8243/Hourglass-cursor-for-Web-ASP-NET-pages

I found this article by searching for "ASP.NET Cursor" it was the first result.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top