Jquery Ui 选项卡中的 JWYSIWYG 或 jHtmlArea

发布于 2024-08-10 20:21:06 字数 585 浏览 3 评论 0原文

我无法让我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弱骨蛰伏 2024-08-17 20:21:06

因为您在页面加载后将尝试 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文