您如何使用 jquery 在 div 上的另一个网页上启动悬停指针和单击功能?
所以,我的 div 类是.ei-title
:
$('.ei-title').click(function() {
/* load the page 'http://google.com' in the same window */
});
此外,当您将鼠标悬停在 div 元素上时,它应该显示一个指针
谢谢!
您如何使用 jquery 在 div 上的另一个网页上启动悬停指针和单击功能?
所以,我的 div 类是.ei-title
:
$('.ei-title').click(function() {
/* load the page 'http://google.com' in the same window */
});
此外,当您将鼠标悬停在 div 元素上时,它应该显示一个指针
谢谢!
$('.ei-title').css('cursor', 'pointer').click(function(event) {
event.preventDefault();
event.stopImmediatePropagation();
window.location = 'http://www.google.com';
});
尽管确实应该将 css 移出到样式表中,而不是通过 javascript 应用。
我认为您希望 thediv
表现得像<a href>
. 如果是这样,方法如下: 光标的 CSS:
div.ei-title {
cursor: pointer;
}
JavaScript:
$('.ei-title').click(function(){
location = 'http://www.google.com'
})