而不是直接点击链接

而不是直接点击链接

本文介绍了点击div上的任意位置,而不是直接点击链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在下面的代码所示的场景中,我如何允许用户点击 c> 上包装 a b

  • 不涉及空的 a

    • use CSS instead of jQuery
    • validate as XHTML 1.0 Strict
    • do not wrap an a around a div
    • do not involve an empty a

    考虑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.post").click(function(){
       window.location.href = "http://...";
    });
    

    这篇关于点击div上的任意位置,而不是直接点击链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

    08-26 15:14