gpt4 book ai didi

jquery - jwysiwyg 使用当前文本区域值作为初始内容

转载 作者:行者123 更新时间:2023-12-01 00:19:10 25 4
gpt4 key购买 nike

我在一页上的多个文本区域上使用 jwysiwyg。然而,我的文本区域有初始的预填充值,我需要它来使用。相反,使用 jwysiwyg 的默认“初始内容”。

我的代码是:

$(document).ready(function(){
$('textarea').wysiwyg({
autoGrow:true,
initialContent: this.value,
controls:"bold,italic,underline,|,undo,redo"
});
});

感谢我可以通过 id 单独调用每个文本区域,但这看起来像是几行代码。认为我的问题完全取决于我引用“this.value”的方式,但无法弄清楚。

我可以通过在 jswysywig.js 中更改以下内容来解决此问题'initialContent = 原始内容.val();' 改成'options.initialContent = original.val();'

最佳答案

这就是您要找的吗:http://jsfiddle.net/QjBh4/

希望这能满足您的需求:))

附注- 请随意使用我的演示并创建您的问题,如果我错过了任何内容,我一定会尽力帮助您!

脚本源等。等。

 <link rel="stylesheet" type="text/css" href="http://akzhan.github.com/jwysiwyg/help/lib/blueprint/screen.css" media="screen, projection" />
<link rel="stylesheet" type="text/css" href="http://akzhan.github.com/jwysiwyg/help/lib/blueprint/print.css" media="print" />
<link rel="stylesheet" href="http://akzhan.github.com/jwysiwyg/jquery.wysiwyg.css" type="text/css"/>
<script type="text/javascript" src="http://akzhan.github.com/jwysiwyg/jquery.wysiwyg.js"></script>
<script type="text/javascript" src="http://akzhan.github.com/jwysiwyg/controls/wysiwyg.image.js"></script>

示例代码

(function($) {
$(document).ready(function() {
$('textarea').each(function() {
value_of_textarea = this.value;
$(this).wysiwyg({

autoGrow: true,
initialContent: function() {
return value_of_textarea;
},
controls: "bold,italic,underline,|,undo,redo"


});
});

});
})(jQuery);​

关于jquery - jwysiwyg 使用当前文本区域值作为初始内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13107273/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com