摘要:
$('.add').click(function(){ var i = $('.much').text(); i++; $('.much').text(i);});$('.reduce').click(function(){ var i = $('.much').text(); i--; if(i= 阅读全文
摘要:
function stopEvent(){ //阻止冒泡事件 //取消事件冒泡 var e=arguments.callee.caller.arguments[0]||event; // //若省略此句,下面的e改为event,IE运行可以,但是其他浏览器就不兼容 if (e && e.stopPr 阅读全文
摘要:
$(this).children('.time, .many').addClass("color-3").removeClass('color-main color-red'); 阅读全文
摘要:
$('.shu>input').bind('input propertychange', function() { console.log($('.shu>input').val()); if($('.shu>input').val()==''){ $('.edit').addClass('colo 阅读全文