0

例如,如何调用 javascript 函数并传递一些变量以用作参数

假设函数javascriptFunction使用 2 个参数。我通常将其称为 javascriptFunction("param1", "param2")(在字符串周围加上单引号)。但现在我想传递一些变量。

string y = "this is a string"
string x = "another"
javascriptFunction(y, x)

我已经尝试过javascriptFunction(@y, @x)javascriptFunction("@y", "@x") (在字符串周围使用单引号,然后是双引号),但这不起作用

编辑我实际上是通过视图(cshtml文件)进行调用的。所以我的变量是字符串。

4

2 回答 2

2

JavaScript 有一个弱类型系统。无需指定类型。所有变量的类型都由它们的值决定。它们是使用关键字创建的var

var y = "this is a string";
var x = "another";

[别忘了使用分号!]

于 2013-01-08T19:31:10.023 回答
1

这应该工作

var y = "this is a string", x = "another";
javascriptFunction(y, x);
于 2013-01-08T19:31:53.667 回答