Javascript在字符串中插入参数
我想问是否有一种方法可以将变量插入另一个字符串中,该字符串是另一个语句的一部分。例如:
function SomeFunction(field) {
var someVariable = document.getElementById('<%=' + field + '.ClientID %>');
}
但是我有一个错误:
Error 6 'string' does not contain a definition for 'ClientID'
谢谢。
I want to ask if there is a way to insert variable inside another string which is part of another statement. For example:
function SomeFunction(field) {
var someVariable = document.getElementById('<%=' + field + '.ClientID %>');
}
But I've got an error:
Error 6 'string' does not contain a definition for 'ClientID'
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法从服务器端标签获取值,这是行不通的:
您需要以某种方式执行此操作,因此您只需执行以下操作:
You can not get a value from server-side tags, this won't work:
You need to do it some way so you only do this:
假设字段是“name”,并且您将 id 指定为“name.4”,其中 4 是 ClientID。
Assuming field is say 'name' and you give id to name field as "name.4" where 4 is ClientID.