wordpress主题优化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
689 B

jQuery(document).ready(function($) {
$('.controls#cordero-img-container-header_layout li img').click(function(){
$('.controls#cordero-img-container-header_layout li').each(function(){
$(this).find('img').removeClass ('cordero-radio-img-selected') ;
});
$(this).addClass ('cordero-radio-img-selected') ;
});
$('.controls#cordero-img-container-footer_layout li img').click(function(){
$('.controls#cordero-img-container-footer_layout li').each(function(){
$(this).find('img').removeClass ('cordero-radio-img-selected') ;
});
$(this).addClass ('cordero-radio-img-selected') ;
});
});