在字段名调用中添加变量?
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这就是你正在寻找的
I think this is what you are looking for