how to get newline from server through ajax as javascript and execute it in client?
i am getting reply from server开发者_如何学Python as xyz.innerHTML='blah blah'; in blah blah i want to send newline and it should be displayed as new line in html. what i have to do? please help.
i am getting reply from server as xyz.innerHTML='blah blah'; in blah blah i want to send newline and it should be displayed as new line in html. what i have to do? please help.
Add <br />
to it:
xyz.innerHTML='blah blah<br />';
Note: You can add the <br />
from server-side script too.
精彩评论