1 Star 0 Fork 19

talentle/ueditor

forked from sanluan/ueditor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ueditor.parse.js 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
sanluan 提交于 2021-12-23 11:07 . 一键排版功能强化
(function (){
var paths = [
'parse.js',
'insertcode.js',
'table.js',
'charts.js',
'background.js',
'list.js'
];
function getUEBasePath ( docUrl, confUrl ) {
return getBasePath( docUrl || self.document.URL || self.location.href, confUrl || getConfigFilePath() );
}
function getConfigFilePath () {
var configPath = document.getElementsByTagName('script');
return configPath[ configPath.length -1 ].src;
}
function getBasePath ( docUrl, confUrl ) {
var basePath = confUrl;
if ( !/^[a-z]+:/i.test( confUrl ) ) {
docUrl = docUrl.split( "#" )[0].split( "?" )[0].replace( /[^\\\/]+$/, '' );
basePath = docUrl + "" + confUrl;
}
return optimizationPath( basePath );
}
function optimizationPath ( path ) {
var protocol = /^[a-z]+:\/\//.exec( path )[ 0 ],
tmp = null,
res = [];
path = path.replace( protocol, "" ).split( "?" )[0].split( "#" )[0];
path = path.replace( /\\/g, '/').split( /\// );
path[ path.length - 1 ] = "";
while ( path.length ) {
if ( ( tmp = path.shift() ) === ".." ) {
res.pop();
} else if ( tmp !== "." ) {
res.push( tmp );
}
}
return protocol + res.join( "/" );
}
var baseURL = getUEBasePath() + '_parse/';
for (var i=0,pi;pi = paths[i++];) {
document.write('<script type="text/javascript" src="'+ baseURL + pi +'"></script>');
}
})();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/talentle/ueditor.git
[email protected]:talentle/ueditor.git
talentle
ueditor
ueditor
dev

搜索帮助