zoukankan      html  css  js  c++  java
  • AJAX 方式

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>Untitled Document</title>
    <script src="../js/jquery.js"></script>
    <script language="javascript">
    function checkemail(){

    if($('#email').val() == ""){
    $('#msg').html("please enter the email!");
    $('#email').focus;
    return false;
    }
    if($('#address').val() == ""){
    $('#msg').html("please enter the address!");
    $('#address').focus;
    return false;
    }
    ajax_post();
    }
    function ajax_post(){
    $.post("test2.php",{email:$('#email').val(),address:$('#address').val()},
    function(data){
    //$('#msg').html("please enter the email!");
    //alert(data);
    $('#msg').html(data);
    },
    "text");//这里返回的类型有:json,html,xml,text
    }
    </script>
    </head>
    <body>
    <form id="ajaxform" name="ajaxform" method="post" action="action.php">
    <p>
    email<input type="text" name="email" id="email"/>

    </p>
    <p>
    address<input type="text" name="address" id="address"/>
    </p>
    <p id="msg"></p>
    <p>
    <input name="Submit" type="button" value="submit" onclick="return checkemail()"/>
    </p>
    </form>
    </body>
    </html>



    <?php
    $email = $_POST["email"];
    $address = $_POST["address"];
    //echo $email;
    //echo $address;
    echo "success";
    ?>
  • 相关阅读:
    多线程(一)--线程的运行
    多线程(二)--锁
    守护线程与用户线程
    SWD接口
    RS485,CAN
    tcp/ip协议
    开关电源与线性稳压电源
    与gps相比,北斗的三频信号有什么优势
    射频识别技术(RFID)
    wifi发射模块芯片各个管脚功能,蓝牙和wifi信号互相干扰,2.4GHZ无线技术
  • 原文地址:https://www.cnblogs.com/jiangzhaowei/p/6846507.html
Copyright © 2011-2022 走看看