新手怎样对innerHTML获得的内容转义?代码有哪些
发布时间:09/01 来源:未知 浏览:
关键词:
<body> <div id="code" style="display:none"> var res = a > b ? a: b; res = res > c ? res : c; return res; </div> </body> <script> var txt=document.getElementById("code").innerHTML; document.write(txt); // 输出:var res = a > b ? a: b; // res = res > c ? res : c; // return res; //缘由是用document.write输出时会对已转义的字符再次转义。 alert(txt); // 输出:var res = a > b ? a: b; // res = res > c ? res : c; // return res; var str = txt.replace(/>/g,">"); alert(str); // 输出:var res = a > b ? a: b; // res = res > c ? res : c; // return res; </script>
以上就是对新手怎样对innerHTML获得的内容转义?代码是啥的全部介绍,本文内容紧凑,但愿大家可以有所收成,更多请关注PHP中文网。
以上就是新手怎样对innerHTML获得的内容转义?代码是啥的具体内容,更多请关注百分百源码网其它相关文章!