1234567891011121314151617181920212223 |
- $(function(){
-
- $('.m_bjq_box').find('img').each(function(){
- var $that = $(this);
- var _alt = $that.attr('alt');
- if(_alt != 'code'){
- if(_alt != 'zixun'){
- $that.removeAttr('width');
- $that.removeAttr('height');
- $that.css({'display':'block','width':'100%','height':'auto'});
- }
- }
- })
- })
- PublicAction.AjaxSend(
- {
- CORID:'m_bm_button',
- }
- );
|