건국시 국가색
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
jQuery(function($){
|
||||
function changeNationColorPlate(){
|
||||
var $this = $('#colorType');
|
||||
var $option = $this.find('option:selected');
|
||||
$this.css({
|
||||
'background-color':$option.css('background-color'),
|
||||
'color':$option.css('color')
|
||||
});
|
||||
}
|
||||
$('#colorType').change(function(){
|
||||
changeNationColorPlate();
|
||||
});
|
||||
changeNationColorPlate();
|
||||
});
|
||||
Reference in New Issue
Block a user