タグ: Ajax
jQuery Ajaxの雛形

よく使うので雛形をメモしておく #select_userのセレクトボックスで選んだ時に処理が行われる時の例 $(“#select_user”).change(function() { // CSRFトークンの取得 $.ajaxSetup({ timeout: 3000, headers: { ‘X-CSRF-TOKEN’: $(‘meta[name=”csrf-token”]’).attr(‘co …
Ajax jQuery 基本フォーム処理
DEMO index.html <!DOCTYPE html> <html> <head> <meta charset=”utf-8″ /> <title>HTML 5 complete</title> <link rel=”stylesheet” href=”css/styles.css”& …
No ‘Access-Control-Allow-Origin’ header is present on the requested resource エラー
ドメインを指定した利用許可 header(‘Access-Control-Allow-Origin: http://example.net’); 全てのドメインからの利用を許可 header(‘Access-Control-Allow-Origin: *’);
シンプルフォームAPI
DEMO index.html <!DOCTYPE html> <html> <head> <meta charset=”utf-8″ /> <title>Simple API Form Ajax</title> <!–[if IE]> <script src=”http://h …