編輯:我有一個RadEditor控制,並希望建立一個過濾器,以<小號> ... < \ S >替換標籤類型,如<德爾> ... < \德爾>。請參閱docs.telerik.com/devtools/aspnet-ajax/controls/editor/...其中,getHtmlContent提供了一個傳入參數a,用於返回結果。如何使用jquery/javascript替換dom標籤類型?
看看這裏的答案... how to change an element type using jquery,如何使用這個引用的工作來處理包裝函數'r'的傳入參數'a'以供其他函數返回。例如,我有...
function replaceTagType(a, b, c) {
var newContent;
/* where 'a' is the target content, 'b' is the target tag type (i.e. <b>)
and 'c' is the new tag type (i.e. <u>). What to put here that uses
above referenced work in "how to change an element type using jquery"
to assign the results to newContent ? */
return newContent;
}
因此,如果= 「<b>測試</B >」,得到的VAR newContent = 「<ü>測試</U >」
不能更換通過測試測試? – ddw147
解析'a',在鏈接的問題中應用解決方案並將元素轉換回HTML? –
我認爲傳入的參數a是DOM。上下文:我有一個RadEditor控件,並且想要構建一個替換標籤類型的過濾器,如
和。請參閱http://docs.telerik.com/devtools/aspnet-ajax/controls/editor/managing-content/content-filters其中,getHtmlContent提供傳入參數a,以便與我想要返回的結果一起運行。 –