12345678910111213141516171819202122232425262728 |
- //生成随机数
- $(document).ready(function() {
- //x上限,y下限
- var x = 200;
- var y = 50;
- var rand = parseInt(Math.random() * (x - y + 1) + y);
- $(".bm_main p.title span em").html(rand);
- })
- $(function(){
- PublicAction.AjaxSend(
- {
- CORID:'m_applysubmit',
- }
- );
- $('.submit_area .m_applysubmit').on('click',function(){
- setTimeout(function(){
- var _html = $('.alert-container .alert-content').html();
- if(_html == '提交成功'){
- $('.bm_main input[type="text"]').val('');
- }
- $('.bm_main input[type="text"]').val('');
- },500)
-
- })
- })
|