在字段名调用中添加变量?

发布于 2024-12-20 19:32:26 字数 331 浏览 0 评论 0原文

我需要在 html 页面中启用一些具有计数的禁用字段,例如:

<input type="text" name="company_<?php echo $j; ?>"size="10" disabled="disabled">

其中 $j 是一个计数器变量...所以我需要在 JavaScript 部分中执行类似的操作来启用这些字段:

document.form1.company_"VARIABLE".disabled=false;

那么是否可以在这样的地方添加变量值?

I need to enable some disabled fields in my html page that have a count for example :

<input type="text" name="company_<?php echo $j; ?>"size="10" disabled="disabled">

where $j is a counter variable... so I need to do something like this in JavaScript part to enable these fields:

document.form1.company_"VARIABLE".disabled=false;

So is it even possible to add a Variable value in such a place?

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

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

发布评论

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

评论(1

你没皮卡萌 2024-12-27 19:32:26
document.getElementsByName("company_" + yourVariable)[0].disabled = false;

我想这就是你正在寻找的

document.getElementsByName("company_" + yourVariable)[0].disabled = false;

I think this is what you are looking for

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