如何在data- *属性中插入新行?我读过有关转义序列的文章/回复,但没有一个有效。
假设我有一个按钮标记,点击后我想将数据传递给javascript方法并显示动态弹出模式。
<button id="myButton" data-toggle="modal" data-target="myModal" data-info="Some content. This content is on a new line"
数据信息将被推送到模态中的div。需要在两个句子之间进行哪些操作才能在单独的行中显示它们。 (基本上是数据信息属性中的一个)
答案 0 :(得分:0)
也许你可以使用你需要的不同文本在 data-info 上做一个数组。
接下来使用 data-info
的te信息在模态窗口或其他内容中创建 p 元素ICommand command = new Command (() => Debug.WriteLine ("Command executed"));
var button = new Button {
Text = "Hit me to execute the command",
Command = command,
};