什么是htmlclean插件用于

时间:2011-05-24 11:09:18

标签: jquery plugins

以下代码行中的html干净是什么

$('body').html($.htmlClean($(this).html(), { allowedTags : ['a', 'ul', 'ol', 'li', 'br', 'p'] }));

2 个答案:

答案 0 :(得分:2)

简单的Google搜索为我提供了以下页面: http://code.google.com/p/jquery-clean/

  

采用脏脏(X)HTML并生成漂亮干净的XHTML(这将删除并清除从其他来源(例如MS Word)粘贴的html。)   它会;

fix self closing tags
lower-case tags
remove non-standard attributes
remove in-line style attributes
remove in-line event attributes
optionally remove other attributes
tidy unnecessary white space and new lines
remove conditional commenting
remove proprietary word formatting tags
replace tags e.g. i=>em
optionally leave css classes in place
format and indent html 

答案 1 :(得分:0)

看起来它正在使用JQuery HtmlClean plugin。其中“采用脏脏(X)HTML并生成漂亮干净的XHTML”