24 lines
623 B
XML
24 lines
623 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<template id="flush">
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
<title>World Map</title>
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
setInterval(function () {
|
|
$("#map").load(location.href + " #map>*", "");//注意后面DIV的ID前面的空格跟 id 后的>*,很重要!
|
|
}, 1000);//8秒自动刷新
|
|
})
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|
|
</template>
|
|
</odoo>
|