您好我正在使用 Phonegap 框架开发一个 Android 应用程序。我正在使用 css 中的“内容”设置图像。下面是我的代码。
HTML:
<img id="templateImg" class="templateImg" />
CSS:
.templateImg {
width: 100%;
height: 92%;
content:url('../images/CLASSY_Car_Main.png');
}
JS:
imgSrc = $("#templateImg").css('content');
它正在返回
imgSrc = url('../images/CLASSY_Car_Main.png')
在 Android 4.0 + 但它返回
imgSrc=' '
在安卓 2.3 中。
如何在运行时为 android 2.3 获取 css 内容?