I loading a simple html file inside the UIWebView. This html contains a single image of a Webcam.
<img id="image" src="http://server.tld/lastwebcamimage.jpg" width="300" height="245" />
现在,我想重播这份html文件/,每读6秒钟,并展示最新的网络形象。
我尝试:
<meta content="no-cache" http-equiv="cache-control">
<meta content="no-cache" http-equiv="pragma">
<meta content="6" http-equiv="refresh">
目 录
<script type="text/javascript">
var active = window.setInterval("reloadMe()", 6000);
function reloadMe() {
window.location.reload()
}
</script>
但t doenst work。 任何其他了解如何更新网页?
图十