Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. ```p
  2. form.on('submit(login)', function(data) {
  3.  
  4. var typeid=$('#typeid option:selected').val();//选中的值
  5.  
  6. $.ajax({
  7. url: "/app/index/login.action"
  8. , data: data.field
  9. , type: "post"
  10. , dataType: "json"
  11. , success: function (data) {
  12.  
  13.  
  14. }
  15. return false;
  16. }
  17.  
  18. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement