12345678910111213141516171819202122232425262728293031323334353637 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <!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=utf-8" />
- <title>Test</title>
- <!--框架必需start-->
- <%@include file="/page/include1.jsp" %>
- <!--框架必需end-->
- <script type="text/javascript">
- $(function(){
- /* $.post($.pathname() +"/ws/test/TestService/test/", {
- }, function(result) {
- if (result.Msg.sucsess == true) {
- alert("成功");
- } else {
- alert("失败");
- }
- }, "json"); */
- alert(111);
- var url = $.pathname() + '/ws/test/TestService/test/';
- $.ajax({
- url : url,
- type : 'post',
- dataType : 'json',
- success : function(data){
- alert("修改成功!");
- }
- });
-
- });
- </script>
- </head>
- <body >
- </body>
- </html>
|