RadEditor 和 document.ready
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RadEditor 控件是一个 ASP.NET AJAX 控件,在 MS AJAX 客户端框架的“init”事件中初始化。尝试用 AJAX pageLoad() 方法替换 $(document).ready() 代码:
这样您就可以确定手风琴代码将在编辑器准备就绪后执行。当然,这取决于页面中的代码,但根据给定的信息,这似乎是最有可能的问题。
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:
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.