front.js 994 B

1234567891011121314151617181920212223242526272829303132
  1. $(function(){
  2. $(".pageNum a").click(function(){
  3. $(this).addClass("pageNum_curr").siblings().removeClass("pageNum_curr");
  4. });
  5. $(".abnav_ul li").click(function(){
  6. $(this).children().addClass("li_curr").parent().siblings().children().removeClass("li_curr");
  7. });
  8. $(".nav_ul li").click(function(){
  9. $(this).addClass("nav_curr").siblings().removeClass("nav_curr");
  10. });
  11. /*选项卡切换*/
  12. $(".top_content").first().show().nextAll().hide();
  13. $(".top_loan li").click(function(){
  14. $(this).addClass("top_loan_hover").siblings().removeClass("top_loan_hover");
  15. $(".top_content").eq($(".top_loan li").index($(this))).show().siblings().hide();
  16. });
  17. /*借款进度*/
  18. //alert($(".pro_wrap").next().text());
  19. $(".loan_pros").each(function(){
  20. var pro_width = $(this).parent().width();
  21. var per = parseInt($(this).parent().next().text());
  22. var prog = (per/100)*pro_width;
  23. $(this).css("width",prog+"px");
  24. if(prog == pro_width){
  25. $(this).css("background","green");
  26. }
  27. });
  28. });