ueditor內建了無格式貼上的功能,只需要簡單的配置即可。
1、修改ueditor.config.js,開啟retainonlylabelpasted,並設定為true
2、開啟pasteplain,並設為true
3、開啟filtertxtrules過濾規則。
注意:filtertxtrules過濾規則預設只過濾p、div、li這幾個標籤。如果h1~h6這類標籤,只是將標籤體替換為p標籤,並沒有將標籤體的樣式去除。因而通過itextpdf生成pdf時時往往會出現異常。因而,較為完善的做法應該是將所有標籤的樣式都去掉(將過濾規則改為})。
修改後的過濾規則:
'filtertxtrules' : function()
return
}, 'br':},
'div':},
'li':},
'caption':},
'th':},
'tr':},
'h1':},'h2':},'h3':},'h4':},'h5':},'h6':},
'td':function
(node)
node.parentnode.removechild(node,node.innertext())
}}}()
UEditor去除複製樣式實現無格式貼上
ueditor內建了無格式貼上的功能,只需要簡單的配置即可。1 修改ueditor.config.js,開啟retainonlylabelpasted,並設定為true 2 開啟pasteplain,並設為true 3 開啟filtertxtrules過濾規則。注意 filtertxtrules過濾...
去除iphone ipad按鈕預設樣式
寫過手機站的可能會遇到明明css樣式已經寫好了,但是到了iphone上面會出現預設的樣式,這樣我們是不能接受的。其實這個很容易就能夠解決,去掉iphone按鈕預設的css的樣式就行了,具體如下 另外還有以下瀏覽器的預設樣式,只要去掉預設的css樣式即可 1.瀏覽器預設發光樣式 input focus...
新聞內容顯示樣式去除
在顯示新聞內容的時候會出現顯示內容出錯存在相容問題 用方法去除樣式 public static string removehtml string htmlstring 刪除指令碼 htmlstring regex.replace htmlstring,regexoptions.ignorecase ...