1
'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">たいです, それは可能ですか? 私を助けてください。

4

2 に答える 2