下一张 可以直接调用
$("#banner_next").on("click",function(){
show();
})
//点击button按钮再次清除计时器和添加计时器
$("button").hover(
function(){
clearInterval(x);
},
function(){
x=setInterval(show,2000);
}
)