Advertisement
turist_ua

vovan

Apr 4th, 2013
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.99 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2.    pageEncoding="UTF-8"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/htm14/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <link rel="stylesheet" href="">
  8. <script type="text/javascript" src="jquery-1.9.1.min.js"></script>
  9. <script type="text/javascript">
  10. $(document).ready(function() {
  11.     $("#press_me").click(function() {
  12.     var sendObj = {};
  13.     sendObj.CATEGORY = "POSITIONS";
  14.     sendObj.OPERATION = "S";
  15.     sendObj.POSITION_NAME = "ALL";
  16.    
  17.     var sendStr = JSON.stringify(sendObj);
  18.        
  19.     $.ajax({
  20.           type: 'POST',
  21.           url: 'http://localhost:8080/30_appServer/mainPort',
  22.           data: sendStr,
  23.           success: function(data){
  24.             alert(data);
  25.           }
  26.     });
  27.  
  28.         });
  29. });
  30. </script>
  31. <title>Insert title here</title>
  32. </head>
  33. <body>
  34.     <a href="" id="press_me">Press me</a>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement