消息弹出窗口中不显示Jquery New Line

时间:2014-06-12 12:40:39

标签: c# javascript jquery

我有代码显示确认弹出窗口。

 string message = "Do you want to set activity to Inactive? " ;
 message += "The predefined settings will be reset for all the users using this Activity.";
 SetToInactiveCheckBox.Attributes["onclick"] = "if($('input[id*=SetToInactiveCheckBox]:checkbox:checked').length > 0 ) return confirm('"+ message +"');";

我希望两行分开打印。 我尝试了以下方式

string message = "Do you want to set activity to Inactive? \n" ;
 string message = "Do you want to set activity to Inactive? '\r\n'" ;
 string message = "Do you want to set activity to Inactive? '<br/>'" ;

如何在单独的行中显示消息。我正在使用IE8。

2 个答案:

答案 0 :(得分:2)

您可以使用

\n or \r\n. 

如果不起作用,请使用

\\r\\n

答案 1 :(得分:1)

你应该使用

<br />

而不是

'<br />'

这对我有用。