2012-11-27 来源:网络
【实例介绍】
JavaScript转义字符
JavaScript提供了一些特殊字符,允许在字符串中包括一些无法直接键人的字符。每个字符都以反斜杠开始。反斜杠是一个转义字符,表示JavaScript解释器下面的字符为特殊字符。
【基本语法】
\b 退格
\f 走纸换行
\n 换行
\r 回车
\t 横向跳格(Ctrl-I)
\' 单引号
\" 双引号
\\ 反斜杠
【实例代码】
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body> <Script Language = "JAVAScript"> <!-- //用(\")表示(") document.write("我们的\"爱人\""); document.write("<hr>"); //用(\\)表示(\) document.write("文件在C:\\Windows\\下"); document.write("<hr>"); //用(\n)表示换行 alert("老婆老婆\n我爱你"); document.write("<hr>"); //用(\n)表示换行 document.write("<pre>老婆老婆\n我爱你</pre>"); document.write("<hr>"); --> </Script> </body> </html>
【代码分析】
在代码中,加粗部分的代码标记表示换行,如图所示。
【素材及源码下载】
请点击:JavaScript转义字符 下载本实例相关素材及源码
相关文章