| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>4.转账</title>
- <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
- <script src="/Public/protest/tbase.js" type="text/javascript"></script>
- <!--
- "http://libs.baidu.com/jquery/2.0.0/jquery.min.js"
- "http://cdn.staticfile.org/jquery/2.0.0/jquery.min.js"
- "http://lib.sinaapp.com/js/jquery/1.6/jquery.min.js"
- -->
- </head>
- <body>
- <a href="index.html">返回首页</a>
- <hr/>
- <br>
- <br>提交参数:
- <div id="paras"></div>
- <br/>
- 返回结果:
- <div id="ret"></div>
- <br>
- <hr/>
- <from id="mfrom">
- <p>代理:<input type="text" id="agent" name="agent" value="test1agent" class="fitem"></p>
- <p>方法:<input type="text" id="method" name="method" value="ptc" class="fitem"></p>
- <br/><br/>
- <p>用户名:<input type="text" id="username" name="username" value="" class="fitem"></p>
- <p>密 码:<input type="text" id="password" name="password" value="" class="fitem"></p>
- <br/><br/>
- <p>订单:<input type="text" id="billno" name="billno" value="" class="fitem"></p>
- <p>金额:<input type="text" id="credit" name="credit" value="" class="fitem"></p>
- <p>进出:<input type="text" id="type" name="type" value="IN" class="fitem"></p>
- </from>
- <input type="button" id="mbutton" value="提交" >
- </body>
- </html>
|