クラスselect1と.select2の2つの選択と、クラス.btnのボタンがあります。両方の選択をクリックすると、ボタンの色のみを変更する必要があります。誰でもこれについて私を助けることができます
これは、jquery を使用して行う必要があります。
クラスselect1と.select2の2つの選択と、クラス.btnのボタンがあります。両方の選択をクリックすると、ボタンの色のみを変更する必要があります。誰でもこれについて私を助けることができます
これは、jquery を使用して行う必要があります。
このような?
$('.select1,.select2').on('change', function(){
$('.btn').addClass('newClassWithColorChange');
});
これが実用的なソリューションです http://jsfiddle.net/ApfJz/7/
HTML:
<select class="select1">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<select class="select2">
<option>10</option>
<option>20</option>
<option>30</option>
</select>
<input type="button" id="mybutton" value="Button" />
javascript:
$(document).ready(function () {
$('.select1, .select2').change(function(){
$('#mybutton').css('background-color', 'red'); // here do what you want on dropdown change
});
});
$('.select1,.select2').on('change', function(){
if(!$(this).hasClass('clicked'))
{
$(this).addClass("clicked");
}
if($("select.clicked").length == 2)
$('.btn').addClass('newClassWithColorChange');
});