gpt4 book ai didi

http - TinyMCE:如果不存在,如何将 'http://' 添加到 URL

转载 作者:可可西里 更新时间:2023-11-01 16:25:24 25 4
gpt4 key购买 nike

如果在 TinyMCE 中添加带插入链接的 URL 时不存在,是否可以在 URL 前添加“http://”?

最佳答案

为此,您需要复制 tinymce Insert Link 插件,重命名它,向其添加必要的代码(“http”-Adding)并将其用作您自己的插件。

编辑:好的,这是一个示例(使用 jQuery):

// You might need to change the event and/or tha handling 
// but this should give you a guess at what needs to be done
setup : function(ed)
{
ed.onClick.add(function(ed, evt)
{
$(ed.getBody()).find('a').each(function(index, element){
if (!$(this).attr('href').search('http')){
$(this).attr('href', 'http://' + $(this).attr('href'));
}
});
});
},

关于http - TinyMCE:如果不存在,如何将 'http://' 添加到 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6061409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com