jQuery ajax:加载 html +应用插件,ie7

发布于 2024-12-09 10:44:27 字数 765 浏览 0 评论 0原文

我想使用 ajax 加载页面的一部分。内容是该向导的 html:http://techlaboratory.net/labs/SmartWizard2/index。 htm

我目前正在做什么:

$(function(){

    $.ajax({
        url: 'content.htm',
        dataType: 'html',
        success: function(data) {

            $('#content').html(data);

            $('#wizard').smartWizard({

            //#wizard is inside the #content

                transitionEffect:'fade', 
                onFinish: function() { 
                    alert('finishClicked');
                } 

            });


        }
    });

});    

如果我只使用 $('#wizard').smartWizard() 并将所有内容都保留在同一页面上,则脚本可以正常工作。但是当我用ajax加载时它不起作用。谁能告诉我有什么区别吗?有什么想法如何解决吗?谢谢

I have a part of a page that i want to load using ajax. The content is the html for this wizard: http://techlaboratory.net/labs/SmartWizard2/index.htm

What im currently doing:

$(function(){

    $.ajax({
        url: 'content.htm',
        dataType: 'html',
        success: function(data) {

            $('#content').html(data);

            $('#wizard').smartWizard({

            //#wizard is inside the #content

                transitionEffect:'fade', 
                onFinish: function() { 
                    alert('finishClicked');
                } 

            });


        }
    });

});    

The script works fine if i just use $('#wizard').smartWizard(), and keep everything on the same page. But when im loading with ajax it doesnt work. Could anyone tell me the difference? Any ideas how to solve? Thanks

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

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

发布评论

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

评论(1

倾城°AllureLove 2024-12-16 10:44:27

由于同源政策,您无法在不同的域上执行ajax请求,

有几种解决方案克服这个。在这里查看:https://stackoverflow.com/search?q=Same+Origin+Policy

you cannot do ajax requests on different domains due to the Same Origin Policy

There are a few solutions to overcoming this. Take a look through here: https://stackoverflow.com/search?q=Same+Origin+Policy

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