• ajax jquery


    <!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=gbk" />
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
    <meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT">
    <link rel="stylesheet" href="index.css" type="text/css" />
    <script type="text/javascript" src="jquery-1.7.2.js"></script>


    <script type="text/javascript">
    $($("userForm").click(function() {
    submitForm();
    return false;//阻止非IE浏览器表单提交
    }));
    function submitForm() {
    var userNameVal = $("#userName").val();
    var passWordVal = $("#passWord").val();
    alert(userNameVal);
    $.ajax({
    type : "post",
    url : "loginAction.action",
    dataType : "json",
    data : {
    "user.userName" : userNameVal,
    "user.passWord" : passWordVal
    }
    });

    }
    </script>
    <title>登陆</title>
    </head>
    <body>
    <div class="login">

    <form name="userForm" method="post" onsubmit="return false;" >
    <table cellSpacing=0 cellPadding=0 width=230 border=0>
    <tr height=5>
    <td width=5></td>
    <td width=56></td>
    <td></td>
    </tr>
    <tr height=36>
    <td></td>
    <td>
    用户名
    </td>
    <td>
    <input
    style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid"
    maxLength=30 size=24 id="userName">
    </td>
    </tr>
    <tr height=36>
    <td>
    &nbsp;

    </td>
    <td>
    口 令
    </td>
    <td>
    <input
    style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid"
    type="password" maxLength=30 size=24 id="passWord">
    </td>
    </tr>
    <tr height=5>
    <td colSpan=3></td>
    </tr>
    <tr>
    <td>
    &nbsp;

    </td>
    <td>


    </td>
    <td>
    <input id="submitButton" type=image height=18 width=70
    src="images/bt_login.gif" onclick="submitForm()">
    </td>
    </tr>
    </table>
    </form>


    <div />
    </body>
    </html>

  • 相关阅读:
    Google Chrome 自定义协议(PROTOCOL)问题的处理
    C# 6.0/7.0 的新特性
    MySQL 5.7.18 压缩包版配置记录
    nginx.conf文件内容详解
    博客添加动态动漫妹子
    TypeScript 3.8beta版
    微信浏览器H5开发常见的坑
    Babel7知识梳理
    雅虎前端优化35条规则
    webpack
  • 原文地址:https://www.cnblogs.com/kisstherain/p/4445675.html
Copyright © 2020-2023  润新知