0
UIWebView内に単純なhtmlファイルをロードしています。このhtmlには、Webカメラの単一の画像が含まれています。uiwebview(iphone)内のhtmlファイルのコンテンツをリフレッシュ
<img id="image" src="http://server.tld/lastwebcamimage.jpg" width="300" height="245" />
は今、私はこのHTMLFILE /画像ごとに6秒を更新し、更新されたWebカメラの画像を表示したいです。
私が試した:それは仕事をdoenst
<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>
をけど。他の人はページを更新する方法を知っていますか?
Thx。
リフレッシュしたくない他のコンテンツがある場合を除き、これは最善の方法です。 iPhoneの画面にはスペースがあまりないので、そうなら再考したいかもしれない。 –