摘要: $('#btn').click(function(){ //设置按钮倒计时 $(this).addClass('disabled'); //把按钮变灰 $(this).attr('disabled', true); //把按钮变灰 var time = 10; $(this).text(time + 's'); //把按钮变成秒数显示 var interval = setInterval... 阅读全文
posted @ 2019-10-15 19:52 划得戳 阅读(743) 评论(0) 推荐(0)
摘要: 报错: AttributeError: 'NoneType' object has no attribute 'split' 最近在写网站中遇到一个问题,就是题目上所写的:AttributeError: 'NoneType' object has no attribute 'split' 然后还有这 阅读全文
posted @ 2019-10-15 19:25 划得戳 阅读(348) 评论(0) 推荐(0)