|
发表于 2022-9-22 21:36:31
|
查看全部
\static\image\editor\editor_function.js
- function insertImage(image, url, width, height) {
- url = typeof url == 'undefined' || url === null ? image : url;
- width = typeof width == 'undefined' || width === null ? 0 : parseInt(width);
- height = typeof height == 'undefined' || height === null ? 0 : parseInt(height);
- var html = '<p><a href="' + url + '" target="_blank"><img src="'+image+'"'+(width?' width="'+width+'"':'')+(height?' height="'+height+'"':'')+'></a></p>';
- edit_insert(html);
- }
复制代码 |
|