首頁  >  文章  >  web前端  >  html pre標籤使用詳解

html pre標籤使用詳解

黄舟
黄舟原創
2017-07-08 10:56:383445瀏覽

html中pre標籤怎麼用

<html>
<head>
</head>
<body>
12344
</body>
</html>

以上一個網頁的源碼,那我現在要把源碼輸出-
那麼用pre標籤怎麼辦?

<pre class="brush:php;toolbar:false">
     这里写你想写的代码~~~~

就是這樣用的

<html>
<head>
</head>
<body>
    12344
<pre class="brush:php;toolbar:false">
<html>
<head>
</head>
<body>
    12344
</body>
</html>

這麼寫為什麼不對?

pre 元素中允許的文字可以包括物理樣式和基於內容的樣式變化,還有連結、圖像和水平分隔線。當把其他標籤(例如 3499910bf9dac5ae3c52d5ede7383485 標籤)放到 e03b848252eb9375d56be284e690e873 區塊中時,就像放在 HTML/XHTML 文件的其他部分一樣即可。
所以你得這樣

<pre class="brush:php;toolbar:false"><html><br><head><br></head><br><body><br>    12344<br></body><br></html>

注意  百度修改了程式碼  & lt;  & gt;(沒有空格)分別代表6d267e5fab17ea8bc578f9e7e5e1570b

#用textarea呢?怎麼用?

textarea  沒問題的

<textarea name="textarea" id="textarea" cols="45" rows="5">
<html>
<head>
</head>
<body>
<code><br>
</textarea>

這次明白了,再加10分吧,多謝了。

e03b848252eb9375d56be284e690e873bc5574f69a0cba105bc93bd3dc13c4ec這個標籤可以包裝的文字排版、格式,原封不動的呈現出來。你輸入的東西被原封不動的輸出,包括你輸入的空格之類的,不用和82c2f54f4cf245029ffb326befd49b3f等來表示空格或者回車了.
用於顯示源碼的確是不錯的方案

<pre class="brush:php;toolbar:false">
$(
function() {
$("#selectBox").mousemove(
function(event) {
$("span:eq(0)").html($("#selectArea").position().left);
$("span:eq(1)").html(event.offsetX);
if ($("#selectArea").css("position") == "absolute") {
$("#selectArea").css({ left: event.clientX - $("img").offset().left });
$("#selectArea").css({ top: event.clientY - $("img").offset().top });
}
if ($("#selectArea").css("position") == "relative") {
$("#selectArea").css({ left: -(300 - event.offsetX) });
$("#selectArea").css({ top: event.offsetY });
}
}
);
}
);
</per>
<html>
<head>
</head>
<body>
    12344
<pre class="brush:php;toolbar:false">
<html>
<head>
</head>
<body>
    12344
</body>
</html>

這麼寫為什麼不對?

哦,你要在per中寫html的程式碼啊,那你要記得
a8093152e673feb7aba1828c43532094不能直接寫成a8093152e673feb7aba1828c43532094,要寫出實體形式

< 小于号 < < 
> 大于号 > > 
& 和号 & & 
" 引号 " " 
&#39; 撇号  &#39; (IE不支持) &#39;

以上是html pre標籤使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn