手机版网页图片问题。在线等
最近弄了一个手机版网页。但是遇到一些问题。有图片需要浏览出来。但是图片是在服务器上存储的。因为网站上也有这个图片所以不能去服务器里修改。只能在获取的时候将图片设置大小。有没有什么方法可以让图片自动适应手机的宽度..
$(function () {
$("#picture img").attr("style", "display:none");
$("#picture img").each(function ()//each
{
$(this).after("<input type=\"button\" value=\"点击显示图片\" onclick=\"$(this).prev().attr('style','display:block');\"/>");
});
})
求代码。。。