Home  >  Article  >  Web Front-end  >  How to wrap lines in javascript

How to wrap lines in javascript

coldplay.xixi
coldplay.xixiOriginal
2021-03-01 14:01:326424browse

How to wrap lines in JavaScript: First add a button in hmtl; then add a message prompt method in js, the code is [var tips="I am" "\n" "Editor"; alert (tips)].

How to wrap lines in javascript

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, DELL G3 computer. This method is suitable for all brands of computers.

Javascript method for line wrapping:

1. In js, alert is generally used for message prompts, but the pop-up message content needs to be line wrapped. This When, we need to use \n, \n is a newline character recognized by the windows system. The effect is as shown in the figure:

How to wrap lines in javascript

#2. Specific method: add a button in hmtl to trigger the message prompt, and add a message prompt method in js. Run the page and the effect as shown above will appear. Note that this method does not apply if it is displayed in HTML.

function checkMe()
{
var tips="我是"+"\n"+"小编";
alert(tips);
}

How to wrap lines in javascript

Related free learning recommendations: javascript video tutorial

The above is the detailed content of How to wrap lines in javascript. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn