我整个早上都在努力解决这个问题。我知道如何改变它 -
$('selector').css( 'cursor', 'pointer' );
我的问题是在 NextGen 插件的所有 js / css 文件中应用它的位置。任何人都可以帮忙吗?
我整个早上都在努力解决这个问题。我知道如何改变它 -
$('selector').css( 'cursor', 'pointer' );
我的问题是在 NextGen 插件的所有 js / css 文件中应用它的位置。任何人都可以帮忙吗?
尝试在您的 css 文件上使用 !important 而不是使用 jQuery 来更改它。
.selector {cursor:pointer !important;}
使用 !important 意味着它将忽略已声明的任何其他专有游标。我不知道 nextgen 插件,但您可以在 Google Chrome、Mozilla Firefox 甚至 IE 上查看该元素的类。
https://developers.google.com/chrome-developer-tools/docs/elements
http://css-tricks.com/when-using-important-is-the-right-choice/