Jquery Ui 选项卡中的 JWYSIWYG 或 jHtmlArea
我无法让我的 jwysiwyg 和 Jhtmlarea 文本编辑器在 AJAX 加载的 Jquery UI 选项卡中工作
这两个文本编辑器在正常加载时都可以工作。
这将加载“查看页面”上的选项卡
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
});
</script>
这将通过 AJAX 在“查看页面”上加载页面
<li><a href="/page/edit/">Edit</a></li>
这将加载“编辑页面”上的 Html 区域
<script type="text/javascript" charset="utf-8">
$(function(){
$("textarea").htmlarea();
});
</script>
所有帮助将不胜感激。
蒂姆
I am not able to get my jwysiwyg and Jhtmlarea text editors to work within an AJAX loaded Jquery UI Tab
Both text editors work when loaded normally.
This loads the tabs on the "View Page"
<script type="text/javascript">
$(function() {
$("#tabs").tabs();
});
</script>
This loads the page via AJAX on the "View Page"
<li><a href="/page/edit/">Edit</a></li>
This loads the Html Area on the "Edit Page"
<script type="text/javascript" charset="utf-8">
$(function(){
$("textarea").htmlarea();
});
</script>
All help would be greatly appreciated.
Tim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为您在页面加载后将尝试 htmlarea-ize 的内容注入到 DOM 中,所以必须将
$("textarea").htmlarea()
放入回调函数中ajax 调用。because you're injecting the things you're trying to htmlarea-ize into the DOM after the page loads, you have to put your
$("textarea").htmlarea()
inside the callback function of the ajax call.