App下載
話題 首頁 > HTML5 教程 > HTML5 教程話題列表 > 詳情

如何清除HTML樣式?

精華
約翰哈羅德 2016-11-02 02:40:47 瀏覽(17658) 回復(8) 贊(0)
<a href="http://o2fo.com/htmltags">HTML</a>中,想清除多余樣式該怎么辦?
html html5 css css3

回答(8)

裴火業(yè)呀666 精華 2016-11-02

dreamweaver 快速清除HTML內聯樣式


再介紹一種用 dreamweaver 清除HTML樣式的方法。

有時候制作網頁,直接從網上復制的網頁內容,或從WORD、PS等軟件生成的HTML都有許多不必要的CSS代碼,影響加載速度,想徹底清除,用dreamweaver再加工,但找不到類似的功能,可以用以下方法:

使用dreamweaver的搜索替換功能,利用正則表達式,可以輕松清除許多垃圾代碼;

如清除內聯樣式:只需要搜索: style="._",替換全部即可。

清除其它的代碼也一樣,如 alt="……"之類

搜索: alt=".*",替換全部即可。

裴火業(yè)呀666 精華 2016-11-02

這是一個刪除HTML樣式、腳本,你可以看下

 public static string NoHTML(string Htmlstring)
    {
        //刪除腳本 
        Htmlstring = Regex.Replace(Htmlstring, @"<script[^>]*?>.*?</script>", "",
          RegexOptions.IgnoreCase);
        //刪除HTML 
        Htmlstring = Regex.Replace(Htmlstring, @"<(.[^>]*)>", "",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"([\\r\\n])[\\s]+", "",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"-->", "", RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"<!--.*", "", RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(quot|#34);", "\\"",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(amp|#38);", "&",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(lt|#60);", "<",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(gt|#62);", ">",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(nbsp|#160);", "   ",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(iexcl|#161);", "\\xa1",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(cent|#162);", "\\xa2",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(pound|#163);", "\\xa3",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&(copy|#169);", "\\xa9",
          RegexOptions.IgnoreCase);
        Htmlstring = Regex.Replace(Htmlstring, @"&#(\\d+);", "",
          RegexOptions.IgnoreCase);
        Htmlstring.Replace("<", "");
        Htmlstring.Replace(">", "");
        Htmlstring.Replace("\\r\\n", "");
        Htmlstring = HttpContext.Current.Server.HtmlEncode(Htmlstring).Trim();


        return Htmlstring;
    }
Danny5D 精華 2016-11-02

下面是快速去除樣式、獲得純凈的text文本的代碼。

這種去除樣式的代碼超級簡單,直接拿過來用就可以,方便快捷。

代碼如下(此代碼可以隨意放到該頁面的任意位置):

<% 
Public Function TextOnly(ByVal sOut)   
Dim re:Set re=New RegExp   
re.IgnoreCase=True   
re.Global=True   
re.Pattern="<script.*>.*</script>"   
sOut=re.Replace(sOut,"")   
re.Pattern="<style.*>.*</style>"   
sOut=re.Replace(sOut,"")   
re.Pattern="<object.*>.*</object>"   
sOut=re.Replace(sOut,"")   
re.Pattern="(<(.[^>]*)>)"   
sOut=re.Replace(sOut,"")   
Set re=Nothing   
TextOnly=sOut   
End Function
%>

用法:TextOnly(從數據庫提出來的信息內容)

卓別林 精華 2016-11-02

可以復制到EditplusSublimetext之類的編輯器里,用正則替換一下就OK了

清除所有style樣式可以用下面的正則表達式

style="([^"]+)"
誰比菇涼瘦 精華 2016-11-02

把文章里邊的html標簽去掉(去掉文字的樣式,顯示css設置的樣式)


//刪除腳本 
Htmlstring = Regex.Replace(Htmlstring, @" <script(\\s[^>]*?)?>[\\s\\S]*? </script>", "", RegexOptions.IgnoreCase);
//刪除樣式
Htmlstring = Regex.Replace(Htmlstring, @" <style>[\\s\\S]*? </style>", "", RegexOptions.IgnoreCase);
//刪除html標簽
Htmlstring = Regex.Replace(Htmlstring, @" <(.[^>]*)>", "", RegexOptions.IgnoreCase);


public string checkStr(string html)
      {
          System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"<script[\\s\\S]+</script *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          System.Text.RegularExpressions.Regex regex2 = new System.Text.RegularExpressions.Regex(@" href *= *[\\s\\S]*script *:", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          System.Text.RegularExpressions.Regex regex3 = new System.Text.RegularExpressions.Regex(@" no[\\s\\S]*=", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          System.Text.RegularExpressions.Regex regex4 = new System.Text.RegularExpressions.Regex(@"<iframe[\\s\\S]+</iframe *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          System.Text.RegularExpressions.Regex regex5 = new System.Text.RegularExpressions.Regex(@"<frameset[\\s\\S]+</frameset *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          System.Text.RegularExpressions.Regex regex6 = new System.Text.RegularExpressions.Regex(@"\\<img[^\\>]+\\>", System.Text.RegularExpressions.RegexOptions.IgnoreCase); System.Text.RegularExpressions.Regex regex7 = new System.Text.RegularExpressions.Regex(@"</p>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          System.Text.RegularExpressions.Regex regex8 = new System.Text.RegularExpressions.Regex(@"<p>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          System.Text.RegularExpressions.Regex regex9 = new System.Text.RegularExpressions.Regex(@"<[^>]*>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
          html = regex1.Replace(html, "");
          html = regex2.Replace(html, "");
          html = regex3.Replace(html, " _disibledevent=");
          html = regex4.Replace(html, "");
          html = regex5.Replace(html, "");
          html = regex6.Replace(html, "");
          html = regex7.Replace(html, "");
          html = regex8.Replace(html, "");
          html = regex9.Replace(html, "");
          html = html.Replace(" ", "");
          html = html.Replace("</strong>", "");
          html = html.Replace("<strong>", "");
          return html;
}
一筆荒蕪 2018-05-31

我也不清楚,坐等大神,火鉗劉明?。。?/p>

1144100656 2018-05-31

這個問題我也不清楚,等大佬來解決吧。。

1152696398 2018-05-31

這個問題我也不清楚,等大佬來解決吧。。

要回復,請先登錄 或者注冊