Heim > Web-Frontend > js-Tutorial > js技巧--转义符""的妙用_javascript技巧

js技巧--转义符""的妙用_javascript技巧

WBOY
Freigeben: 2016-05-16 19:21:33
Original
1162 Leute haben es durchsucht

// blueDestiny, never-online // blueDestiny [at] 126.com

通常,我们在动态给定一个container的innerHTML时,通常是样做的:


<script> <BR>var div = document.getElementById("divc"); <BR>var html = "" <BR>html += "" <BR>+ "<h1>" <BR>+ "<a href='javascript:;' onclick=\"alert('javascript')\">DHTML innerHTML propery." <BR>+ ""; <BR>div.innerHTML = html; <BR></script>

写得习惯了的话,倒也不麻烦,但有没有更简单的一个方法呢?请看下面的例子:

<script> <BR>var html='\ <BR><table width="100%" border="0" cellspacing="0" cellpadding="0">\ <BR><tr>\ <BR><td> \ <BR>\ <BR><tr>\ <BR><td> \ <BR>\ <BR>\ <BR>'; <BR>alert(html); <BR></script>
是不是没有这么麻烦了?但还是要有几点注意,看下面的例子
<script> <BR>//要用\'把单引号转义 <BR>var html='\ <BR><h1>\ <BR>javascript技巧 <BR>\ <BR><a href="javascript:;" onclick="alert(\'javascript\')">javascript转义\ <BR><br/>\ <BR>power by \'blueDestiny, never-online\'\ <BR>'; <BR>alert(html); <BR></script>
该转义的地方还是得用"\"

'-------------------------------------------------------
' 原理:
'-------------------------------------------------------
这个是我自己的个人观点,如果有不对的地方,请指出:
还是看个例子:
<script> <BR>//s1和s2的字符a前都有一个空格 <BR>s1='\ <BR>a'; <BR>s2=' a'; <BR>document.write("s1: " + s1.length + "\ns2: " + s2.length); <BR></script>
输出结果:
s1: 2 s2: 2
也就是说转义符将回车转义掉了!也就是说
再看个例子:
<script> <BR>//下面这个字符串是有空格的,也就是这样s1='\ 的。 <BR>s1='\ <BR>a'; <BR>document.write("s1: " + s1.length); <BR></script>
输出错误,错误提示:未结束字符串常量。
也就是说是多加了一个空格的原因。那再这样试试
<script> <BR>s1='\ \ <BR>a'; <BR>document.write("s1: " + s1.length); <BR></script>
结果很明显了,在字符串中,"\"转义符可以将回车转义掉(也就是回车符不存在了),但是不能将制表符,以及空格字符转义(它们是存在的,上面的例子说明了这一点)。

最后,给大家一个小tips,还记得上面的这个代码吗?
<script> <BR>//要用\'把单引号转义 <BR>var html='\ <BR><h1>\ <BR>javascript技巧 <BR>\ <BR><a href="javascript:;" onclick="alert(\'javascript\')">javascript转义\ <BR><br/>\ <BR>power by \'blueDestiny, never-online\'\ <BR>'; <BR>alert(html); <BR></script>
仔细观察弹出来的模态框,看看字符串是怎么样的?应该就会明白了。
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage