有没有办法使用 jquery 将文本插入到 bootstrap wysiwyg 中?顺便说一句,我从这个页面使用了 bootstrap-wysihtml5 http://jhollingworth.github.io/bootstrap-wysihtml5/ 文本实际上是来自下拉列表的模板,然后应该在 wysisyg 上插入所选的 onchange 值。
我尝试了这段代码,但它只将文本插入隐藏的文本区域而不是所见即所得
$(document).ready(function(e) {
$("#template").change(function(){
var template = $("#template").val();
if(template != '') {
$('.textarea, .wysihtml5-sandbox').append(template);
}
});
});