Javascript 在“<>”内插入文本输入

发布于 2025-01-09 07:19:04 字数 77 浏览 0 评论 0 原文

我如何在我的 <> 中动态插入诸如“refer”之类的内容输入标签,不直接写入html而是使用javascript? 类似的东西

How i can insert dinamically something like "refer" inside my <> input tag, without writing it directly into html but using javascript?
Something similar to

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黎夕旧梦 2025-01-16 07:19:04

您可以使用 setAttribute 执行此操作

var i = document.querySelector("input");

i.setAttribute("name", "myinput");

参考:https://developer.mozilla.org/en-US/docs/Web/API/Element/setAttribute

you can use setAttribute for this action

var i = document.querySelector("input");

i.setAttribute("name", "myinput");

ref: https://developer.mozilla.org/en-US/docs/Web/API/Element/setAttribute

静谧幽蓝 2025-01-16 07:19:04

假设你有这个

Supposing you have this ????

<input type="text" value="23" id="age"> </input>

You can select that element by

const ageInput = document.getElementById('age');

If what you want is to change the text inside you can do this by

ageInput.innerHTML = "Hello World"

Or you can set a new attribute by

ageInput.setAttribute("refer", "true");

setAttribute documentation ???? https://developer.mozilla.org/en-US/docs/Web/API/Element/setAttribute

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文