Prev Demo
AngularJS
>
Include
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script> </head> <body> <div ng-app> <select ng-model="includeFile" ng-init="includeFile = '/DemoSupportingFiles/angular-includefile1.html'"> <option value="/DemoSupportingFiles/angular-includefile1.html">File 1</option> <option value="/DemoSupportingFiles/angular-includefile2.html">File 2</option> </select> <p> Write your name here <input type="text" ng-model="MyName" /> </p> <p> My name is {{ MyName }} </p> <div style="border:1px solid #808080;" ng-include="includeFile"> </div> </div> </body> </html>
Note: We DO NOT save your trial code in our database.
Output