12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- $(function(){
- $('.accredit').on('click',function(){
- if ($(this).find('i').hasClass('on')) {
- $(this).find('i').removeClass('on');
- }else{
- $(this).find('i').addClass('on');
- }
- })
- $('.but_xinq').on('click',function(){
- $('.message_box').show(10)
- $('.message_bg').show(10)
- })
- $('.message_gb,.message_bg').on('click',function(){
- $('.message_box').hide()
- $('.message_bg').hide()
- })
- /*
- * 调用的方法
- * */
- PublicAction.AjaxSend(
- {
- CORID:'in_ztbutton', /*操作ID*/
- }
- );
- $('.in_ztbutton').on('click',function(){
- setTimeout(function(){
- var _html = $('.alert-container .alert-content').html();
- if(_html == '提交成功'){
- $('body form input[type="text"]').val('');
- }
- // console.log(_html);
- },300)
- })
- })
|