在 TinyMCE 编辑器中重复图案墙纸

repeat pattern wallpaper in TinyMCE editor

我有一个tinymce编辑器可以改变背景的功能,但是我想重复一张壁纸还是不行。 CSS 中类似于 background-repeat: repeat; 的内容 我怎样才能做到这一点 ? 这是函数:

function SettinymceImage(bg_image) {
var t = tinyMCE.get(0);
t.getBody().style.backgroundImage = 'url(https://my_path_to_wallpapers/'+bg_image+')'; 
}

你试过吗?

function SettinymceImage(bg_image) {
    var t = tinyMCE.get(0);
    t.getBody().style.backgroundImage = 'url(https://my_path_to_wallpapers/'+bg_image+')';
    t.getBody().style.backgroundRepeat = "repeat";
}