如何调用javascript函数并传递一些变量用作参数 例如
假设函数javascriptFunction
使用2参数。我通常将其称为javascriptFunction("param1", "param2")
(在字符串周围用单引号)。但现在我想传递一些变量。
string y = "this is a string"
string x = "another"
javascriptFunction(y, x)
我尝试了javascriptFunction(@y, @x)
,javascriptFunction(“@ y”,“@ x”)(在字符串周围加上单引号和双引号)但这不起作用
EDIT 我实际上通过视图(cshtml文件)进行调用。所以我的变量是字符串。
答案 0 :(得分:2)
JavaScript有一个弱类型系统。没有必要指定类型。所有变量的类型都由它们的值决定。它们是使用关键字var
:
var y = "this is a string";
var x = "another";
[别忘了使用分号!]
答案 1 :(得分:1)
这应该有效
var y = "this is a string", x = "another";
javascriptFunction(y, x);