问题描述
在下面的代码所示的场景中,我如何允许用户点击 c> 上包装 a b 考虑ArVan的解决方案是最好的(见我的评论)。 So far, I consider ArVan's solution to be the best (see my comment there). 尝试在div上添加onclick监听器。你可以这样在html像这样< div class =poststyle =padding:20px; background-color:transparent; onclick =location.href ='http:// ...'> 。 Try adding an onclick listener on the div. You can do this in the html like this <div class="post" style="padding: 20px; background-color: transparent;" onclick="location.href='http://...'">. 这个: 这篇关于点击div上的任意位置,而不是直接点击链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
推荐答案
$("div.post").click(function(){
window.location.href = "http://...";
});