如何在 Javascript 中定义串联?

发布于 2024-10-28 13:36:03 字数 170 浏览 4 评论 0原文

我只懂Lua和HTML。但我正在尝试扩展到 Javascript。

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

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

I only really know Lua, and HTML. But I'm trying to expand to Javascript.

How do I add a concatenation to the end of this? The ID is always a number.

How it would be done in lua (if this helps, make my point) "http://www.roblox.com/My/PrivateMessage.aspx?RecipientID="..X

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

梦萦几度 2024-11-04 13:36:03
var myVar = 7;
var myString = "http://www.roblox.com/My/PrivateMessage.aspx?RecipientID=" + myVar;
var myVar = 7;
var myString = "http://www.roblox.com/My/PrivateMessage.aspx?RecipientID=" + myVar;
自演自醉 2024-11-04 13:36:03

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

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

String concatenation in javascript can be done with the operator +. Example:

var s1 = "hello";
var s2 = "world";
var s3 = s1 + " " + s2; // hello world 
债姬 2024-11-04 13:36:03
"http://www.roblox.com/My/PrivateMessage.aspx?RecipientID="+myID
"http://www.roblox.com/My/PrivateMessage.aspx?RecipientID="+myID
青丝拂面 2024-11-04 13:36:03
var s = "Hello";
s += "World";

document.write(s); // Prints HelloWorld
var s = "Hello";
s += "World";

document.write(s); // Prints HelloWorld
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文