1

我正在将Bootstrap TokenField与 Jquery Ui 一起使用,并且我尝试从 Json 添加图像,但是当我这样做时,它不是显示图像,而是显示图像的 html 代码我在网上或 Stackoverflow 上找到的大多数修复程序从Javascript 通过获取我真的不想要的 id,因为我的会员的个人资料图片不是基于他们的 id,而是他们只是在数据库中注册,我想在使用我与数据库的连接后用 json 获取它

这是我的引导令牌字段代码

$('.tokenfield').tokenfield({
  autocomplete: {
        source: "messages_search_peoples.php?nom_field=nom_prenom",
        minLength: 1,

    delay: 100
  },
  showAutocompleteOnFocus: true
});


//Prevent duplicate in the tokenfield

$('.tokenfield').on('tokenfield:createtoken', function (event) {


    var existingTokens = $(this).tokenfield('getTokens');
    $.each(existingTokens, function(index, token) {
        if (token.value === event.attrs.value)
            event.preventDefault();
    });

});

有没有办法激活使用 html 或显示图像而不是图像的代码

谢谢

4

0 回答 0