使用 AJAX 包含其他网站上的 html 并检索用户数据
下面的工作会起作用吗?如果有人有任何想法,我想知道有更好的方法吗?
- 页面从另一个站点/域加载ajax脚本文件
- 用户在页面上填写表单并通过JSON/AJAX将其提交回原始站点/域。
Would the following work? And I would like to know of there is a better way to do this if anyone has any ideas?
- Page loads ajax script file from another site/domain
- User fills in a form on the page and submits it via JSON/AJAX back to the original site/domain.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
相关问题跨域ajax - 此方法是否有效讨论了使用iframes来做跨域Ajax。接受的答案有一个链接到 与 iframe 的跨域通信,这是一篇关于如何在页面中使用 iframe 进行跨域通信。您可以使用那里的“黑客”之一(在同一域中生成新的 iframe、监视状态等)。完成你想做的事情。
The related question Cross-domain ajax - would this method work discusses the use of iframes to do cross domain Ajax. The accepted answer has a link to Cross domain communication with iframes, a post about how to communicate across domains using an iframe in a page. You can use one of the "hacks" there (spawning new iframes in the same domain, monitoring state, etc). to accomplish what you are trying to do.