我没有透明图像或其他任何内容,为什么img的左上角有水印?
<img style="display:inline-block;background-color:#000000; width: 256px; height: 256px; cursor: pointer; border: 5px solid #000000;" onClick="this.src='https://i.imgur.com/M5VkVbK.png'
this.style.width='266px';this.style.height='266px'
;this.style.cursor='default'" />
对此感到好奇。希望有人在这里得到答案。
答案 0 :(得分:1)
这不是水印,这意味着它无法找到图像。仔细检查您的URL,并确保您的开发计算机可以访问该URL。
这里的代码似乎对我很好。
请注意,在您点击之前,您将看到损坏的图片图标,因为private String sendAlert(String lat, String lon) throws IOException, JSONException {
Call<ResponseBody> call = cougarServices.postAlert(lat, lon);
ResponseBody response = call.execute().body();
JSONObject json = (response != null ? new JSONObject(response.string()) : null);
return handleJsonRequest(json);
}
标记未定义<img>
。一个好的解决方法是在此期间使用1x1图像。我在下面的代码段中实现了这一点。
src
&#13;