RadEditor 和 document.ready

发布于 2024-09-17 08:39:23 字数 213 浏览 9 评论 0原文

document.ready 在 RadEditor 中不起作用, 当我使用以下 jquery 代码时

<script>
  $(document).ready(function() {
    $("#accordion").accordion();
});
</script>

它在 RadEditor 中显示为错误

document.ready is not working in RadEditor,
when i use the following jquery code

<script>
  $(document).ready(function() {
    $("#accordion").accordion();
});
</script>

It shows as error in RadEditor

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

中二柚 2024-09-24 08:39:23

RadEditor 控件是一个 ASP.NET AJAX 控件,在 MS AJAX 客户端框架的“init”事件中初始化。尝试用 AJAX pageLoad() 方法替换 $(document).ready() 代码:

<script type="text/javascript">
function pageLoad()
{ 
    $("#accordion").accordion(); 
}; 
</script> 

这样您就可以确定手风琴代码将在编辑器准备就绪后执行。当然,这取决于页面中的代码,但根据给定的信息,这似乎是最有可能的问题。

The RadEditor control is a ASP.NET AJAX control and is initialized in the "init" event of the MS AJAX client framework. Try replacing the $(document).ready() code with the AJAX pageLoad() method:

<script type="text/javascript">
function pageLoad()
{ 
    $("#accordion").accordion(); 
}; 
</script> 

This way you can be certain that the accordion code will be executed after the editor is ready. Of course it depends on the code in your page, but with the given information, this seems the most probable issue.

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