JSON HTML
- 上一页 JSON PHP
- 下一页 JSON JSONP
ဂျူနေးအော့ဗေး သုံးသပ်ထားသော ဂျူနေှာင်ဇက် ကို လက်ခံနိုင်
စတင်ပြီးသော ဂျူနေှာင်ဇက် ကို ဝတ္ထုရိုက်နိုင်
HTML အေဂျင််အက်စ် အချက်အလက်
အေဂျင််အက်စ် သုံးသပ်ထားသော အချက်အလက် အကျင့် အေဂျင််အက်စ် အချက်အလက် ပြုလုပ်ပါ:
အကြောင်း
obj = { "table":"customers", "limit":20 }; dbParam = JSON.stringify(obj); xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myObj = JSON.parse(this.responseText); txt += "<table border='1'>" for (x in myObj) { txt += "<tr><td>" + myObj[x].name + "</td></tr>"; } txt += "</table>" document.getElementById("demo").innerHTML = txt; } } xmlhttp.open("POST", "json_demo_db_post.php", true); xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); xmlhttp.send("x=" + dbParam);
စတင်ပြီးသော HTML အေဂျင််အက်စ် အချက်အလက်
သုံးသပ်ထားသော HTML အေဂျင််အက်စ် အချက်အလက်: တစ်ခုခု ရွေးချယ်ပါ: ဖြစ်သူ ပစ္စည်း ဝန်ထမ်း
အကြောင်း
<select id="myselect" onchange="change_myselect(this.value)"> <option value="">Choose an option:</option> <option value="customers">Customers</option> <option value="products">Products</option> <option value="suppliers">Suppliers</option> </select> <script> function change_myselect(sel) { var obj, dbParam, xmlhttp, myObj, x, txt = ""; obj = { "table":sel, "limit":20 }; dbParam = JSON.stringify(obj); xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myObj = JSON.parse(this.responseText); txt += "<table border='1'>" for (x in myObj) { txt += "<tr><td>" + myObj[x].name + "</td></tr>"; } txt += "</table>" document.getElementById("demo").innerHTML = txt; } }; xmlhttp.open("POST", "json_demo_db_post.php", true); xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); xmlhttp.send("x=" + dbParam); } </script>
HTML ခွဲခြမ်းခြောက်
လက်ခံထားသော JSON အချက်အလက် ကို ကိုယ်စားပြုထားသော HTML ခွဲခြမ်းခြောက် ကို ထုတ်လုပ်ပါ:
အကြောင်း
obj = { "table":"customers", "limit":20 }; dbParam = JSON.stringify(obj); xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myObj = JSON.parse(this.responseText); txt += "" document.getElementById("demo").innerHTML = txt; } } xmlhttp.open("POST", "json_demo_db_post.php", true); xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); xmlhttp.send("x=" + dbParam);
- 上一页 JSON PHP
- 下一页 JSON JSONP