jpztjh.js 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. $(function(){
  2. $('.accredit').on('click',function(){
  3. if ($(this).find('i').hasClass('on')) {
  4. $(this).find('i').removeClass('on');
  5. }else{
  6. $(this).find('i').addClass('on');
  7. }
  8. })
  9. $('.but_xinq').on('click',function(){
  10. $('.message_box').show(10)
  11. $('.message_bg').show(10)
  12. })
  13. $('.message_gb,.message_bg').on('click',function(){
  14. $('.message_box').hide()
  15. $('.message_bg').hide()
  16. })
  17. /*
  18. * 调用的方法
  19. * */
  20. PublicAction.AjaxSend(
  21. {
  22. CORID:'in_ztbutton', /*操作ID*/
  23. }
  24. );
  25. $('.in_ztbutton').on('click',function(){
  26. setTimeout(function(){
  27. var _html = $('.alert-container .alert-content').html();
  28. if(_html == '提交成功'){
  29. $('body form input[type="text"]').val('');
  30. }
  31. // console.log(_html);
  32. },300)
  33. })
  34. })