有没有办法在我的文件中预先添加一个钻取,而用户无法在提示文本字段中触摸它,因为我现在设置如下:
function iimages() {
var img = prompt ("Enter the image link", "../../../../uploads/");
if (img != null) {
editor.document.execCommand("insertImage", false, img);
}
}
所以,我../../../../uploads/
自动添加,以便用户无法更改?
答案 0 :(得分:1)
您可以尝试这种方式:
function iimages() {
var img = prompt ("Enter the image link", "example.jpg");
if (img != null) {
editor.document.execCommand("insertImage", false, "../../../../uploads/" + img);
}
}