gpt4 book ai didi

jquery - 使用 jQuery 使整个 Div 可点击

转载 作者:行者123 更新时间:2023-11-28 04:35:36 25 4
gpt4 key购买 nike

代码:

<style>
.mydiv {
border: 1px solid #00f;
cursor: pointer;
}
</style>

<div class="mydiv">blah blah blah.
<a href="http://examples.com">Examples link</a>
</div>


我想单击“blah blah blah”文本并跳转到“ http://examples.com” ' 使用 jQuery 的链接。

最佳答案

JS:

$(".mydiv").click(function(){
if($(this).find("a").length){
window.location.href = $(this).find("a:first").attr("href");
}
});

或者:

简单的写:

<a href="http://examples.com">
<div class="mydiv">blah blah blah.
Examples link
</div>
</a>

关于jquery - 使用 jQuery 使整个 Div 可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20771460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com