19 lines
639 B
HTML
19 lines
639 B
HTML
<script type="text/javascript">//<![CDATA[
|
|
XHR.poll(3, '<%=luci.dispatcher.build_url("admin", "network", "syncdial_status", "status")%>', null,
|
|
function(x, data) {
|
|
var tb = document.getElementById('syncdial_status');
|
|
if (data && tb) {
|
|
tb.innerHTML = '<b><%:当前在线接口数量:%> ' + data.num_online + '</b>';
|
|
}
|
|
}
|
|
);
|
|
//]]>
|
|
</script>
|
|
<style>.mar-10 {margin-left: 50px; margin-right: 10px;}</style>
|
|
<fieldset class="cbi-section">
|
|
<p id="syncdial_status">
|
|
<em><%:Collecting data...%></em>
|
|
</p>
|
|
</fieldset>
|
|
|