jQuery ajax:加载 html +应用插件,ie7
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于同源政策,您无法在不同的域上执行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