0

您如何使用 jquery 在 div 上的另一个网页上启动悬停指针和单击功能?

所以,我的 div 类是.ei-title

$('.ei-title').click(function() {
   /* load the page 'http://google.com' in the same window */
});

此外,当您将鼠标悬停在 div 元素上时,它应该显示一个指针

谢谢!

4

2 回答 2

2
$('.ei-title').css('cursor', 'pointer').click(function(event) {
    event.preventDefault();
    event.stopImmediatePropagation();

    window.location = 'http://www.google.com';   
});

尽管确实应该将 css 移出到样式表中,而不是通过 javascript 应用。

于 2012-08-21T11:35:41.097 回答
2

我认为您希望 thediv表现得像<a href>. 如果是这样,方法如下: 光标的 CSS:

div.ei-title {
  cursor: pointer;
}

JavaScript:

$('.ei-title').click(function(){
  location = 'http://www.google.com'
})
于 2012-08-21T11:35:50.960 回答