jQuery点击iphone事件无效?

时间:2014-04-03 02:45:10

标签: jquery iphone select mobile click

帮助我在jQuery中创建一个函数,在选择按钮中单击背景将改变它在桌面上的工作但在移动设备中它不是任何人都可以帮助我,谢谢。

到目前为止,这是我的代码。



$('.changeBg').click(function () { //better use change evenet
  $(this).toggleClass('BgColor');
});

.changeBg {
  background-color:#fff;
}
.BgColor {
  background-color:blue;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select name="contact" class="changeBg">
  <option value="">Change!</option>
  <option value="">Changes!</option>
</select>
&#13;
&#13;
&#13;

P.S我尝试使用cursor: pointer; CSS仍无法正常工作

1 个答案:

答案 0 :(得分:0)

$('.changeBg').on('click',function () { 
   $(this).toggleClass('BgColor');
});