菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <meta charset="utf-8"> <script src="http://edu.jb51.net/libs/angular.js/1.4.6/angular.min.js"></script> <body ng-app="myApp"> <div ng-include="'http://edu.jb51.net/demo_source/angular_include.php'"></div> <script> var app = angular.module('myApp', []) app.config(function($sceDelegateProvider) { $sceDelegateProvider.resourceUrlWhitelist([ 'http://edu.jb51.net/demo_source/**' ]); }); </script> <p>你需要设置服务端允许跨域访问,设置方法可参考 <a target="_blank" href="/w3cnote/php-ajax-cross-border.html">PHP Ajax 跨域问题最佳解决方案</a>。 </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net