gpt4 book ai didi

javascript - 在 div 中显示 href 链接

转载 作者:行者123 更新时间:2023-11-30 07:25:14 24 4
gpt4 key购买 nike

我想显示 href链接在 <div id="display"></div>标记,所以当我按菜单或列表中的任何内容时,它只会在带有 display 的 div 中打开作为其 id .我有这样的菜单

<div class="menu">
<a href="http://stackoverflow.com" onkeydown="myFunc()">HOME</a>
</div>
<div id="display"></div>

我的 JavaScript 是这样的

$('#display').html($('.menu a').html());

我不太了解 javascript,但我认为 javascript 代码实际上是错误的,如果有人能帮助我,我将不胜感激。

最佳答案

我想显示 href

您需要获取 href 属性才能使用 .prop()

$('#display').html($('.menu a').prop('href'));

Demo

关于javascript - 在 div 中显示 href 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19250720/

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