发布网友 发布时间:2022-04-20 09:02
共2个回答
懂视网 时间:2022-04-20 13:24
本篇文章给大家带来的内容是关于新手如何对innerHTML获得的内容转义?代码是什么,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。<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>
热心网友 时间:2022-04-20 10:32
/aa/a.jpg改成绝对路径不行吗 <img src=' http://www.xxx.com/aa/a.jpg'>