结束行“\n”在 FBJS 对话框中
我正在尝试显示带有多行消息的 FBJS 对话框。
message += "Please enter the name of the Post.\n"
message += "Please enter content.\n"
message += "Content must have at least 10 characters.";
new Dialog().showMessage("Error", message);
但那段代码在同一行中显示了该消息。
有人知道该怎么做吗?
谢谢。 埃内斯托·卡里翁
I'm trying to show a FBJS Dialog with a multiline message.
message += "Please enter the name of the Post.\n"
message += "Please enter content.\n"
message += "Content must have at least 10 characters.";
new Dialog().showMessage("Error", message);
But that piece of code shows the message in the same line.
Does anybody knows how to do that?
Thanks.
Ernesto Carrión
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当对话框中显示文本以外的内容时,您应该使用 fb:js 字符串。
这是一个例子:
然后你就有了显示对话框的函数:
You should use an fb:js-string when you have something other than text to show in a dialog.
Here's an example:
And then you have the function that shows the dialog: