我正在寻找一种基于 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>