- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
当我在 tinymce 中添加图像时,这是我得到的默认 html 源代码:
<p><img class="img-responsive img-post" src="/Images/uploads/img.png" alt="" /></p>
我该如何更改?类似于:
<p><img class="img-responsive img-post" data-original="/Images/uploads/img.png" src="/Images/loading.gif" alt="" /></p>
我有原始数据作为 src 而 src 是加载图标,它需要像这样因为我对图像进行了延迟加载。
我知道您可以使用以下方式扩展有效元素:
extend_valid_elements: "data-original"
但我如何更改默认 html 源代码的结构?有没有选择ok图片插入回调之类的东西??
更新:
这是我的tinymce启动代码:
/******************************tinyMce*******************************/
function tinyMce() {
tinymce.init({
theme: "modern",
selector: "#mceEditor",
height: 500,
extend_valid_elements: "data-original",
relative_urls: true,
convert_urls: false,
image_advtab: true,
image_title: false,
image_description: false,
image_dimensions: false,
image_class_list: [
{ title: "Responsive", value: "lazy img-responsive img-post" }
],
image_list: function (success) {
$.ajax({
url: "/Image/List",
type: "GET",
dataType: "json",
success: function (data) {
success(data);
}
});
},
// enable automatic uploads of images represented by blob or data URIs
automatic_uploads: true,
// URL of our upload handler (for more details check: https://www.tinymce.com/docs/configure/file-image-upload/#images_upload_url)
images_upload_url: "/Image/Upload",
// here we add custom filepicker only to Image dialog
file_picker_types: "image",
// and here's our custom image picker
file_picker_callback: function (cb, value, meta) {
var input = document.createElement("input");
input.setAttribute("type", "file");
input.setAttribute("accept", "image/*");
// Note: In modern browsers input[type="file"] is functional without
// even adding it to the DOM, but that might not be the case in some older
// or quirky browsers like IE, so you might want to add it to the DOM
// just in case, and visually hide it. And do not forget do remove it
// once you do not need it anymore.
input.onchange = function () {
var file = this.files[0];
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
// Note: Now we need to register the blob in TinyMCEs image blob
// registry. In the next release this part hopefully won't be
// necessary, as we are looking to handle it internally.
var id = "blobid" + (new Date()).getTime();
var blobCache = tinymce.activeEditor.editorUpload.blobCache;
var base64 = reader.result.split(',')[1];
var blobInfo = blobCache.create(id, file, base64);
blobCache.add(blobInfo);
// call the callback and populate the Title field with the file name
cb(blobInfo.blobUri(), { title: file.name });
};
};
input.click();
}
});
}
我现在正在考虑另一种方式,如果我可以将tinymce中的默认src属性替换为data-original,那将是完美的,但是在tinymce中,如果我使用data-original,它不会显示图片,它只是显示空白。有没有办法在添加图像时告诉 tinymce,将 data-original 代替 src 并从 data-original 代替 src 读取?
因此:
<p><img class="img-responsive img-post" src="/Images/uploads/img.png" alt="" /></p>
在没有 src 的情况下:
<p><img class="img-responsive img-post" data-original="/Images/uploads/img.png" alt="" /></p>
最佳答案
这是一种检测图像何时插入编辑器的方法。
JS
var newSrc = "/Images/loading.gif";
tinymce.init({
selector: 'textarea',
plugins: "image",
toolbar: "image",
height: 350,
setup: function(editor){
editor.on('NodeChange', function (e) {
if(e.element.tagName === "IMG"){
e.element.setAttribute("data-original", e.element.currentSrc);
e.element.setAttribute("src", newSrc);
}
});
}
});
您可以通过监听 NodeChange
事件来访问该元素。然后检查 tagName
是 IMG
类型。然后我们就正常设置我们的属性。
检查这个Demo
关于jquery - 如何更改在 Tinymce 中添加图像的默认 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45728568/
我试图理解基数排序,但在理解实现实际代码时改 rebase 数时遇到问题。这是我用来学习基数排序的代码,我会尝试解释我不明白的地方。 此代码由 GeeksForGeeks 提供: // C++ imp
话不多说,请看代码: ? 1
本文实例讲述了mysql语句实现简单的增、删、改、查操作。分享给大家供大家参考,具体如下: 1、创建db_shop数据库,如果该数据库不存在则创建 ?
使用oracle触发器 实现对某个表的增改删的监控操作,并记录到另一个表中。 代码: 复制代码代码如下: create or replace trigger test_trigge
java连接数据库增、删、改、查工具类 数据库操作工具类,因为各厂家数据库的分页条件不同,目前支持Mysql、Oracle、Postgresql的分页查询 在Postgresql环境测试过了,其他
1、修改数据 复制代码代码如下: DataRow dr =
注册表可以用来进行存储一些程序的信息,例如用户的权限、或者某些值等,可以根据个人需要进行存储和删减。 当前注册表主目录: 引用包 Wesky.Net.OpenTools 1.0.5或
是否可以将 pdf 页面的页眉更改为与当前所选书签同名的名称?我正在为我的 pdf 生成使用 Flying Saucer 。你能举个例子吗?提前致谢。 最佳答案 这对我适用于 flyingsaucer
好家伙,写后端,这多是一件美逝. 关于这个项目的代码前面的博客有写 我的第一个独立项目 - 随笔分类 - 养肥胖虎 - 博客园 (cnblogs.com
准备工作: 增、删、改、查的方法有很多很多种,这里只展示出常用的几种。 ?
需要5个类: 1.实体类:Person.java 2.抽象类:SQLOperate.java(封装了对数据库的操作) 3.助手类:DBOpenHelper.java(继承SQLiteOpenH
首先是是一个简单的例子,单链表的建立和输出。 程序1.1 复制代码 代码如下: #include<iostream> #include<string> using na
数据库操纵基本流程为: 1、连接数据库服务器 2、选择数据库 3、执行SQL语句 4、处理结果集 5、打印操作信息 其中用到的相关函数有 •resource m
我需要为 iPad 和 iPhone 设置不同颜色的标签,我知道我们可以为不同的尺寸类别更改字体大小,但是有什么方法可以根据尺寸类别的值设置不同的颜色 我知道有可用的代码解决方案,但我想知道 size
假设我有一个物体相对于相机的坐标 X、Y、Z 和方向 Rx、Ry、Rz。此外,我有这个相机在世界上的坐标 U、V、W 和方向 Ru、Rv、Rw。 如何将对象的位置(位置和旋转)转换为其在世界中的位置?
CRUD是Create(创建)、Read(读取)、Update(更新)和Delete(删除)的缩写,它是普通应用程序的缩影。如果您掌握了某框架的CRUD编写,那么意味可以使用该框架创建普通应用程序了
项目结构: 添加页面: &
本文实例讲述了android操作sqlite数据库(增、删、改、查、分页等)及listview显示数据的方法。分享给大家供大家参考,具体如下: 由于刚接触android开发,故此想把学到的基础知识
总括 pandas的索引函数主要有三种: loc 标签索引,行和列的名称 iloc 整型索引(绝对位置索引),绝对意义上的几行几列,起始索引为0 ix 是 iloc 和 loc的合体 at
我是一名优秀的程序员,十分优秀!