12345678910111213141516171819202122 |
- $(function(){
- /*
- * 调用的方法
- * */
- PublicAction.AjaxSend(
- {
- CORID:'apply_submit', /*操作ID*/
- }
- );
- // 公司简介
- $('.intro-nav a').on('click',function(){
- var _this = $(this);
- var imgUrl = _this.attr('data-url');
- $('.intro-details img').attr('src','/zt/malaysia/image/'+imgUrl+'.png');
- _this.addClass('on').siblings().removeClass('on');
- var txt = _this.html();
- $('.intro-site span').html(txt);
- })
- })
|