gpt4 book ai didi

javascript - Bootstrap markdown extraButtons 无法与很棒的字体一起使用?

转载 作者:行者123 更新时间:2023-11-28 04:50:15 25 4
gpt4 key购买 nike

我正在使用 Bootstrap markdown js。我正在尝试添加新按钮,一切正常,一切正常,但如果我使用很棒的字体,它不会显示图标。

这是我的代码:

$("#html_value").markdown({
iconlibrary : 'fa',
additionalButtons: [
[{
name: "groupCustom",
data: [{
name: "cmdBath",
toggle: true,
title: "Bath",
icon: "fa fa-facebook-square",
callback: function(e){
var chunk, cursor,
selected = e.getSelection(),
content = e.getContent(),
chunk = "Wellness"
e.replaceSelection(chunk)
cursor = selected.start
e.setSelection(cursor,cursor+chunk.length)
}
}]
}]
]
});

最佳答案

我找到了答案:

$("#html_value").markdown({
iconlibrary : 'fa',
additionalButtons: [
[{
name: "groupBath",
data: [{
name: "cmdBath",
toggle: true,
title: "Bath",
icon: {
glyph: 'glyphicon glyphicon-link',
fa: 'fa fa-fire',
'fa-3': 'icon-link',
octicons: 'octicon octicon-link'
},
callback: function(e){
var chunk, cursor,
selected = e.getSelection(),
content = e.getContent(),
chunk = "Wellness"
e.replaceSelection(chunk)
cursor = selected.start
e.setSelection(cursor,cursor+chunk.length)
}
}]
}]
]
});

关于javascript - Bootstrap markdown extraButtons 无法与很棒的字体一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42981376/

25 4 0
文章推荐: html - 匹配动态类名的 CSS 通配符选择器?
文章推荐: c++ - Sprite ;更改帧在 C++ Allegro 5 中不流畅
文章推荐: php -
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com