我使用NicEditor(http://nicedit.com)。調整大小窗口NicEditor
首先,我設置的文本域100%的寬度,但是當我調整窗口的大小,編輯保持不變,並不會調整到窗口的新寬度爲100%。
<textarea style="width: 100%;"> something .. </textarea>
<script>
//<![CDATA[
bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
//]]>
</script>
我該如何解決這個問題?
編輯: 我發現,有效的解決方案:
$(function() {
editor = new nicEditor({fullPanel : false}).panelInstance('text');
})
$(window).resize(function() {
editor.removeInstance('text');
editor = new nicEditor({fullPanel : false}).panelInstance('text');
});
刷新niceEdit每個窗口大小調整! –