jqueryを使用してブートストラップwysiwygにテキストを挿入する方法はありますか? ところで、私はこのページhttp://jhollingworth.github.io/bootstrap-wysihtml5/の bootstrap-wysihtml5 を使用 しました。テキストは実際にはドロップダウンからのテンプレートであり、選択された onchange 値は wysisyg に挿入する必要があります。
このコードを試しましたが、wysiwyg ではなく非表示のテキストエリアにのみテキストが挿入されます
$(document).ready(function(e) {
$("#template").change(function(){
var template = $("#template").val();
if(template != '') {
$('.textarea, .wysihtml5-sandbox').append(template);
}
});
});