我刚开始使用34grid并且无法摆脱与 div 关联的链接。我删除了我认为生成链接的代码:
$('.container > .row > div:first-child').click(function() {
// select current cols and it's complements
var _doNotSelect = '.' + $(this).attr('class') + ', ' + '.' + $(this).attr('class') + 'c';
// show / hide rows
$('.container > .row > div').not(_doNotSelect).toggle();
});
但是当鼠标悬停(指针变为手)时,div 仍然表现为链接。我可以使用 css 使其成为指针,但我想了解为什么会出现手。
将不胜感激。谢谢