我正在使用Phonegap / cordova。
我有
<img id="clothes" src="pictures/white.jpg" width="100%" >
我有div颜色
<a href="#FE4C04" style="text-decoration:none;">
<div style="width:16%;height:20%;background-color:#FE4C04;margin:2%;float:left;"> </div>
</a>
<a href="#1498C8" style="text-decoration:none;">
<div style="width:16%;height:20%;background-color:#1498C8;margin:2%;float:left;"> </div>
</a>
jQuery代码:
$(document).ready(function(){
$("[href='#FE4C04']").click(function(){
$('#clothes').attr('src','aa.jpg');
});
$("[href='#1498C8']").click(function(){
$('#clothes').attr('src','ab.jpg');
});
我想点击div颜色,然后更改图像。此代码适用于桌面浏览器,但如果我尝试使用设备(例如Android),则图像不会更改。
我尝试了很多方法,但无法解决此问题。