要實(shí)現(xiàn)Html中特殊字符不被轉(zhuǎn)義(源碼輸出),有以下三種方法:方法一:
疏附網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),疏附網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為疏附成百上千提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的疏附做網(wǎng)站的公司定做!(推薦教程:html教程)
將HTML代碼嵌入到<script type='text/html' style='display:block'></scipt>中
<script type='text/html' style='display:block'> <input type="text" /> </scipt>
舉例:
body> <pre> <script type="text/html" style="display: block;"> <div>哈哈哈</div> <h4>dfdfd</h4> </script> </pre> </body>
方法二:
有時(shí)候想讓一些html的標(biāo)簽不被瀏覽器解釋翻譯,直接原樣的顯示出來(lái),這時(shí)可以在想要顯示的代碼的外面加上<xmp></xmp>,這樣<xmp>標(biāo)簽里面的內(nèi)容將原封不動(dòng)的顯示出來(lái)。
<xmp> <table> <tr> <th width="140">a</td> <th width="140">b</td> <th width="140">c</td> </tr> </table> </xmp>
方法三:
動(dòng)態(tài)創(chuàng)建html時(shí),有時(shí)需要某些內(nèi)容源碼顯示,不進(jìn)行html解析:
1、input和textarea通過(guò)js設(shè)置value值,不會(huì)對(duì)特殊字符(")進(jìn)行html解析
2、input和textarea直接寫(xiě)在value,會(huì)對(duì)特殊字符(")進(jìn)行html解析
3、input和textarea通過(guò)jquery設(shè)置value值,不會(huì)對(duì)特殊字符(")進(jìn)行html解析
4、通過(guò)js或者jquery創(chuàng)建input和textarea,直接通過(guò)字符串拼接value,會(huì)對(duì)特殊字符(")進(jìn)行html解析
5、通過(guò)js或者jquery創(chuàng)建input和textarea,通過(guò)js或者jquery設(shè)置value,不會(huì)對(duì)特殊字符(")進(jìn)行html解析6.通過(guò)js或者jquery創(chuàng)建textarea,通過(guò)js(innerHTML)或者jquery(html())設(shè)置value,會(huì)對(duì)特殊字符(")進(jìn)行html解析7.js或者jquery添加script需要特殊處理,并且type='text/html'代表源碼輸出,不及進(jìn)行html解析渲染
舉例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥(niǎo)教程(runoob.com)</title> <script src="https://cdn.staticfile.org/jquery/1.8.3/jquery.min.js"></script> <script> $(function() { //1.input和textarea通過(guò)js設(shè)置value值,不會(huì)對(duì)特殊字符(")進(jìn)行html解析 document.getElementById("t1").value="""; document.getElementById("t2").value="""; alert("t1:" + document.getElementById("t1").value);//" alert("t2:" + document.getElementById("t2").value);//" //2.input和textarea直接寫(xiě)在value,會(huì)對(duì)特殊字符(")進(jìn)行html解析 alert("t3:" + document.getElementById("t3").value);//" alert("t4:" + document.getElementById("t4").value);//" //3.input和textarea通過(guò)jquery設(shè)置value值,不會(huì)對(duì)特殊字符(")進(jìn)行html解析 $("#t5").val("""); $("#t6").val("""); alert("t5:" + $("#t5").val());//" alert("t6:" + $("#t6").val());//" var str = """; //4.通過(guò)js或者jquery創(chuàng)建input和textarea,直接通過(guò)字符串拼接value,會(huì)對(duì)特殊字符(")進(jìn)行html解析 var t9 = 't10<textarea id="t9">' + str + '</textarea><br><br>'; $("#div1").append(t9); alert("t10:" + $("#t10").val());//" //5.通過(guò)js或者jquery創(chuàng)建input和textarea,通過(guò)js或者jquery設(shè)置value,不會(huì)對(duì)特殊字符(")進(jìn)行html解析 var t10 = 't10<textarea id="t10"></textarea><br><br>'; $("#div1").append(t10); $("#t10").val(str); alert("t10:" + $("#t10").val());//" //6.通過(guò)js或者jquery創(chuàng)建textarea,通過(guò)js(innerHTML)或者jquery(html())設(shè)置value,會(huì)對(duì)特殊字符(")進(jìn)行html解析 var t11 = 't11<textarea id="t11"></textarea><br><br>'; $("#div1").append(t11); $("#t11").html(str); alert("t11的text:" + $("#t11").text());//" alert("t11的val:" + "t11.val()=" + $("#t11").val());//" //7.js或者jquery添加script需要特殊處理,并且type='text/html'代表源碼輸出,不及進(jìn)行html解析渲染 $("#div1").append("<script type='text/html' style='display:block'" +">" + ""</" + "script>"); }); </script> </head> <body> t1<input type="text" id="t1" value=""/><br><br> t2<textarea id="t2"></textarea><br><br> t3<input type="text" id="t3" value="""/><br><br> t4<textarea id="t4">"</textarea><br><br> t5<input type="text" id="t5" value=""/><br><br> t6<textarea id="t6"></textarea><br><br> <div id="div1"></div> </body> </html>
網(wǎng)頁(yè)標(biāo)題:html中的特殊字符如何源碼輸出
文章鏈接:http://m.rwnh.cn/article12/cpdddc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、品牌網(wǎng)站制作、App設(shè)計(jì)、網(wǎng)站建設(shè)、外貿(mào)建站、App開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
營(yíng)銷型網(wǎng)站建設(shè)知識(shí)