• 以application/json 方式提交 然后用在php中读取原始数据流的方式获取 在json_encode


    html 如下:


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE>后台管理系统登录</TITLE>
    <META http-equiv=Content-Type content="text/html; charset=utf-8">
    <script src="/docs/js/jquery-1.8.1.min.js" ></script>
    </HEAD>
    <body>
        name: <input type="text" name="name" id="name" value="tom" /><br />
        age:<input type="text" name="age" id="age" value="22" /><br />
        <textarea name="contents" id="contents"></textarea><br />
        <a href="#" onclick="javascript:tijiao();"> submit </a>

    <div style="height:100px;500px;border:1px solid red;" id="shows"></div>

    </BODY>
    </HTML>
     <script>
     function tijiao()
     {
         $.ajax({
             type: "POST",
             contentType: "application/json",
             url:'/test1.php',// 跳转到 action
             data: '{"name":"'+$('#name').val()+'","age":"'+$('#age').val()+'","contents":"'+$('#contents').val()+'"}',
             dataType: 'json',
             success: function(result) {
                 $("#shows").html(result.name + "|"+result.age + "|" + result.contents );
             }
         });
    }

     </script>

    php:

    <?php
    $string = file_get_contents("php://input");
    $res = json_decode($string,true);

    echo json_encode($res);

    ?>

  • 相关阅读:
    bordersizing属性
    solr服务的搭建(以solr4.1实现)
    在网页标题栏title加入图标?
    JS中JSON对象的定义和取值
    eclipse搭建maven ssm项目
    用JAVA中BufferedImage画出漂亮的验证码点击变化
    Python环境变量搭建
    如何在目录ODP提交您的网站?
    PHP的301重定向代码
    VMware系统克隆
  • 原文地址:https://www.cnblogs.com/niun/p/4981548.html
Copyright © 2020-2023  润新知