1

我正在寻找一种基于 div 的 href 链接重定向页面的方法。如果页面上只有一个 div,则重定向到该 div 的 a href 链接。

JS

$(function () { 
    if ($('.div').length = 1) { alert('Just one Div'); } 
});

HTML

<div class="div"><div class="title"><a href="../posters/bicycles/default.html">Bicycle</a></div>
4

2 回答 2

1

尝试这个:

$('.div a').click(function (e) {
    e.preventDefault();
    window.location.href = $(this).attr('href');
});
于 2013-04-19T17:09:21.610 回答
1

你可以这样做,返回 DIV 元素的数量:

if( $("div").length == 1 )
{
    document.location = $("div a").attr("href");
}
于 2013-04-19T17:08:14.743 回答