gpt4 book ai didi

javascript - 设置 Twitter 时间轴 href

转载 作者:行者123 更新时间:2023-12-03 00:13:42 26 4
gpt4 key购买 nike

我正在尝试使用 javascript 或 jquery 在我的 Twitter 时间轴上动态设置 href 字段,我该如何执行此操作?

 <a class="twitter-timeline" id="twitter" data-lang="en" data-theme="dark" data-link-color="#19CF86" href=""; data-chrome="noheader, nofooter, noborders, noscrollbar,transparent">Tweets by me</a>

最佳答案

使用setAttribute函数。它将所选元素的属性设置为用户提供的任何值

var link="www.link.com";
document.querySelector("#twitter").setAttribute("href",link)
console.log(document.querySelector("#twitter").getAttribute("href"))
<a class="twitter-timeline" id="twitter" data-lang="en" data-theme="dark" data-link-color="#19CF86" href=""; data-chrome="noheader, nofooter, noborders, noscrollbar,transparent">Tweets by me</a>

关于javascript - 设置 Twitter 时间轴 href,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54611253/

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