stringfyしたフォームデータを受け取り表示させたいのですがなにも表示されません。
どこが間違っていますか?
javascript
1$(function(){ 2 $("#send").on('click',function(){ 3 var ary_data = {}; 4 ary_data.ID = $('input[name="id"]').val(); 5 ary_data.product = $('input[name="product"]').val(); 6 ary_data.color = $('input[name="color"]').val(); 7 send_data=JSON.stringify(ary_data); 8 $.ajax({ 9 type:"POST", 10 url:".send.php", 11 data:send_data, 12 dataType: "json", 13 }).done(function(data){ 14 $("#result").text(data); 15 }).fail(function(XMLHttpRequest, textStatus, errorThrown){ 16 console.log(textStatus); 17 }); 18 }); 19}); 20
php
1 2$json_data = json_decode($send_data); 3$ID = $json_data->ID; 4print $ID; 5
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。