如何在 Javascript 中定义连接?

Posted

技术标签:

【中文标题】如何在 Javascript 中定义连接?【英文标题】:How do I define a concatenation in Javascript? 【发布时间】:2011-07-25 13:53:54 【问题描述】:

我只真正了解 Lua 和 html。但我正在尝试扩展到 javascript

如何在末尾添加串联? ID 始终是一个数字。

如何在 lua 中完成(如果这有帮助,请说明我的观点)“http://www.roblox.com/My/PrivateMessage.aspx?RecipientID="..X

【问题讨论】:

【参考方案1】:
var myVar = 7;
var myString = "http://www.roblox.com/My/PrivateMessage.aspx?RecipientID=" + myVar;

【讨论】:

【参考方案2】:

javascript 中的字符串连接可以使用运算符 + 来完成。示例:

var s1 = "hello";
var s2 = "world";
var s3 = s1 + " " + s2; // hello world 

【讨论】:

【参考方案3】:
"http://www.roblox.com/My/PrivateMessage.aspx?RecipientID="+myID

【讨论】:

【参考方案4】:
var s = "Hello";
s += "World";

document.write(s); // Prints HelloWorld

【讨论】:

以上是关于如何在 Javascript 中定义连接?的主要内容,如果未能解决你的问题,请参考以下文章

如何从Java applet访问JavaScript中定义的对象/数组

如何在沙箱中使用 Rhino for Java 运行 Javascript?

java获取javascript的内容

java script中如何获取后台数据库读取的数据

如何在 wordpress 帖子区域中添加自定义 javascript?

与 javascript 的 mySQL 连接