12345678910111213141516171819202122 |
- $(function(){
-
- PublicAction.AjaxSend(
- {
- CORID:'apply_submit',
- }
- );
-
- $('.intro-nav a').on('click',function(){
- var _this = $(this);
- var imgUrl = _this.attr('data-url');
- $('.intro-details img').attr('src','/zt/feilibin/image/'+imgUrl+'.jpg');
- _this.addClass('on').siblings().removeClass('on');
- var txt = _this.html();
- $('.intro-site span').html(txt);
- })
- })
|