0

我的提交按钮上有这个

onClick="jsfunction('my-php.php','var1','Wait Message Here...')"

它将 3 个参数传递给我的 javascript 函数

1st - my PHP File that will process the data
2nd - a variable of the data that will be processed
3rd - a wait message

现在我想在第二个参数中传递多个变量,用逗号分隔(像这样 - var,var2,var3

我怎样才能做到这一点。谢谢

4

1 回答 1

0

要加入var1,var2var3成一个用逗号分隔的字符串,只需将 then 放入一个数组并加入它们:

jsfunction('my-php.php', [var1, var2, var3].join(','),'Wait Message Here...')

或者,如果您愿意,您可以简单地连接它们。

var1 + "," + var2 + "," + var3
于 2013-01-13T16:02:24.370 回答