如下所示:
ng-model="name" //填寫的數據提交到index.php
index.html
<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <script src="angular.min.js"></script></head><body><div ng-app="module" ng-controller="ctrl">//form表單提交 <form action="index.php" method="post"> <input type="text" name="title" ng-model="name"> {{name}} <input type="submit"> </form></div><script> var m = angular.module('module', []); m.controller('ctrl', ['$scope', function ($scope) { $scope.name = '泠泠在路上'; }]);</script></body></html>
index.php
<?phpprint_r($_POST);
以上這篇angularJs提交文本框數據到后臺的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。
新聞熱點
疑難解答