我在索引视图中有一个删除链接:
$alertText = 'Want to delete %s?\n 2nd line';
echo $this->Form->postLink(__('Löschen'), array(
'action' => 'delete', $event['Event']['id']), null,
__($alertText, $event['Event']['id']));
现在我想要一条有两条线的警报, 所以我尝试了以下方法,但它没有用。
\n
\\\n
你知道为什么新行的默认行为在这里不起作用。
答案 0 :(得分:1)
尝试使用双引号
$alertText = "Want to delete %s?\n 2nd line";