remote的值怎么填
$("#mymodal").modal({
remote:'https://www.baidu.com/' });
2016-09-27
remote:'https://www.baidu.com/',这样涉及到跨域了,好像只能引用同域名的网页,看报的错误是用的ajax,不是iframe。
错误:
XMLHttpRequest cannot load https://www.baidu.com/bootstrap.html. Redirect from 'https://www.baidu.com/bootstrap.html' to 'https://www.baidu.com/search/error.html' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
举报