Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Twitter Bootstrap rails Carousel 进行调查项目。我需要添加一个功能,如果用户不回答问题并尝试单击下一个箭头,则应显示一条消息“请在继续之前选择一个答案”。我该如何完成?是通过警报消息吗?我该怎么做呢?
$(".carousel-next").on("click",function(){ if(condition){ // condition -> doesnot answer a question alert('message'); return false; }
});
$(".carousel-prev").on("click",function(){ if($(".carousel-inner .item.active").index() == 0){ return false; } });