left:'-='+width
的意思是:left属性的最终值,是left现有值减去width这个值 例如:left:'200px' 意思是left最终值变成200
left:'+200px' 意思与上面相同,是left最终值变成200
left:'+=200px' 假设当前left为100 意思是left最终值是当前值加200 ,最终值为300 -=同理
-=应该是left=left-width的意思
原链接:https://zhidao.baidu.com/question/921906882845071579.html