Bootstrap-wysihtml5 jquery プラグイン ( https://github.com/jhollingworth/bootstrap-wysihtml5/ ) を使用して、テキストエリアを WYSIWYG に変換しています。2 つのボタンをクリックしてエディターをアクティブ化および非アクティブ化できるようにしたいと考えています。これまでのところ、エディターを表示できます。エディターを非アクティブ化して、テキストエリアとその値だけを残す方法を教えてください。私のコードは次のとおりです: -
HTML
<textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
<input type="button" id="button1" value="Show Editor">
<input type="button" id="button2" value="Hide Editor">
脚本
$("#button1").click(function(){
$('textarea').wysihtml5();
});
$("#button2").click(function(){
// this is where i'm stuck
});
ありがとうございました