gpt4 book ai didi

internet-explorer - 链接内联 block 跨度和 Internet Explorer

转载 作者:行者123 更新时间:2023-11-28 19:03:09 25 4
gpt4 key购买 nike

以下内容在 Chrome 和 Firefox 中运行良好,并使容器可点击。在 Internet Explorer 中,它也是可点击的,但只是更改光标以指示内部 div,而不是 span

我可以用 cursor:pointer 解决这个问题,但更重要的是,它不允许右键单击以在新选项卡中打开。

这个问题有解决办法吗?谢谢!

<html>
<head>
<style type="text/css">
span{display:inline-block;width:100px}
</style>
</head>
<body>
<a href="/">
<div>
<div>title</div>
<span>text</span><span>text</span>
</div>
</a>
</body>
</html>

最佳答案

您的 HTML 无效,尽管浏览器按照您的预期运行,但永远不会生效。

至于可点击的div,你可以用jQuery做你想做的:

$(function (){
$("#clickme").click(function(event) {
event.preventDefault();
window.open('http://www.whatever.com');
});
});

Example for you here .

关于internet-explorer - 链接内联 block 跨度和 Internet Explorer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4794363/

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