ai didi

javascript - 如何使用 javascript 更改 标签的值?

转载 作者:搜寻专家 更新时间:2023-10-31 21:54:05 24 4
gpt4 key购买 nike

这是我的html代码

<a href="myfile.html" id='tagId'>Old File</>

我想更改名为“新文件”的标签的值

所以我写了 javascript,比如 document.getElementById("tagId").value='New File';

我认为输出像 <a href="myfile.html" id='tagId'>New File</a>

但它不起作用。有人可以帮忙吗?

最佳答案

使用 .innerHTML.innerText

document.getElementById("tagId").innerHTML="new File",

document.getElementById("tagId").innerText="new File",

或注意:并非所有浏览器都支持 innerTEXT , 所以使用 textContent如果您只想更改文本,

引用 Stack overflow answer

就像@Amith Joki 说的那样,使用 like

 document.getElementById("tagId").textContent="new File",

<a>标签没有 value 属性,您需要更改 anchor 标签的 html。

使用 Jquery

$("#tagId").html("new File");

$("#tagId").text("new File");

编辑

如果你想使用 javascript 更改 href,请像这样使用

 document.getElementById("tagId").href="new href";

使用 jquery,

$("#tagid").attr("href","new value");

关于javascript - 如何使用 javascript 更改 <a> 标签的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23934978/

24 4 0
文章推荐: javascript - 如何从头开始制作 jquery slider
文章推荐: php - Woocommerce 在订单查看页面中显示客户详细信息中的额外字段
文章推荐: html - CSS 拉伸(stretch)或适合背景图像
文章推荐: php - GroceryCrud 使用 where 子句设置 n-n 关系
搜寻专家
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com