'insert_img': {
"text": "Inserimage",
"icon":"icon icon-picture",
"tooltip": "Insertimage",
"commandname":null,
"custom": function(){
var imgSrc = prompt('Enter image location', '');
if (imgSrc != null) {
document.execCommand('insertimage', false, imgSrc);
}
}
},
我有这样的代码,我想给图像添加 alt,我该如何实现?当我拿我想看到的来源时<img src="smiley.gif" alt="Smiley face">
,这可能吗?请帮我。