There are many scenarios for writing templates in js, such as: html code templates for pop-up frames, etc. JS does not support long text writing with line breaks, and it is necessary to add up one line, such as:
Copy the codeThe code is as follows:
var content = '<div>row 1</div>'
+ '<div>row 2</div>';
It cannot be written as:
Copy the codeThe code is as follows:
var content = '<div> row 1</div>
<div>row2 </div> ';
So I processed a small piece of php code to simplify the manual operation.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http:///TR/html4/"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Str To Js String</title> <style type="text/css"> .content-box { border: 1px #f0f0f0 slid; border-left: 4px #e0e0e0 solid; padding: 5px 5px 5px 10px; } </style> </head> <body> <h1>Enter formatted text:</h1> <?php $jsContent = ''; if(isset($_POST['content']) && $_POST['content']) { $content = strtr(htmlspecialchars($_POST['content']), array("\r\n" => "\n")); $rows = explode("\n", $content); foreach($rows as $row) { $jsContent .= '+ \'' . $row . "'<br/>"; } $jsContent{0} = ' '; } ?> <form action="#" method="post"> <textarea name="content" style="width: 99%;height: 300px; "></textarea> <p><input type="submit" value="submit" /></p> </form> <h2>Formatted results:</h2> <div class="content-box"> <?php echo $jsContent;?> </div> </body> </html>
The above is the entire content of this article, I hope you like it.