Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 MVC 应用程序并使用 Razor 语法。
我<div>在 .cshtml 文件中使用一个标签。
<div>
当光标悬停在特定<div>标签上时,我想使用 JavaScript 将光标图标更改为手形。
我怎样才能做到这一点?
这可以通过 CSS 完成:
div.classname { cursor:pointer; }
如果必须使用 JavaScript 完成:
document.getElementsByTagName('div')[0].addEventListener('mouseover', function(){ this.style.cursor = 'pointer'; });