0

我正在尝试使用 post 方法将指定的数据发布到服务器并获得一些数据消息作为回报。如何使用 post 方法发送指定的数据。

AUTHENTICATION:  
POST: URL
Inputs:  
type = csv | json 
roll = alphanumeric string 
dob = mmddyyyy 
method = auth 
devId = <developer id> 
Output:   
result = success | failure 
nKey = an encrypted key for the particular user 
message = <failure reason>

这是表格代码

 <form id="login">
                <ul>
                    <li>
                        <input type="date" placeholder="date of Birth" />
                    </li>
                    <li>
                      <input type="text" pattern="[a-zA-Z]{1}\d{7}" title="X9999999" placeholder="XX999" />
                    </li>
                    <li>
                        <input type="submit" value="Login" class="button" />                                           

                    </li>
                </ul>

如何使用 post 方法发送带有输入数据的表单数据?

4

1 回答 1

0

像这样:

$.post( "URL", $('#login').serialize(), 
    function( data ) { alert(data); }
);

URL 中指定的页面必须返回消息,您将在“数据”上打印出所有 URL 页面。

于 2013-07-25T18:18:23.853 回答