运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script> <body ng-app=""> <p>Everything you write in the textarea will also be the content of the heading below:</p> <textarea ng-model="myTextarea"></textarea> <p>The content of the textarea is;</p> <h1>{{myTextarea}}</h1> </body> </html>