Guest User

Untitled

a guest
Jul 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @RequestMapping(value = "/", method = RequestMethod.GET)
  2. public ModelAndView index(ModelAndView mav) {
  3. mav.setViewName("index");
  4. return mav;
  5. }
  6.  
  7. <button type="button" id="testButton">
  8.  
  9. $(function() {
  10. $('#testButton').on('click', function(){
  11. 処理
  12. });
  13. });
Add Comment
Please, Sign In to add comment