Javascript在字符串中插入参数

发布于 2024-08-27 07:53:10 字数 318 浏览 9 评论 0原文

我想问是否有一种方法可以将变量插入另一个字符串中,该字符串是另一个语句的一部分。例如:

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 技术交流群。

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

发布评论

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

评论(2

原来分手还会想你 2024-09-03 07:53:10

您无法从服务器端标签获取值,这是行不通的:

<%=' + field + '.ClientID %>

您需要以某种方式执行此操作,因此您只需执行以下操作:

var someVariable = document.getElementById(field);

You can not get a value from server-side tags, this won't work:

<%=' + field + '.ClientID %>

You need to do it some way so you only do this:

var someVariable = document.getElementById(field);
去了角落 2024-09-03 07:53:10

假设字段是“name”,并且您将 id 指定为“name.4”,其中 4 是 ClientID。

function SomeFunction(field) {  

      var someVariable = document.getElementById(field+".<%= ClientID.to_s %>");
    }

Assuming field is say 'name' and you give id to name field as "name.4" where 4 is ClientID.

function SomeFunction(field) {  

      var someVariable = document.getElementById(field+".<%= ClientID.to_s %>");
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文