我正在寻求帮助,以通过iFrame和jQuery显示特定的id div标签,并每30秒重新加载一次页面。到目前为止,这就是我所拥有的。
<!doctype html>
<html>
<head>
<div id="viva">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
document.getElementById('#viva').contentWindow.location.reload();
</script>
</div>
</head>
<body>
<script>
$('#ctl00_ContentPlaceHolder1_dgTracker').load('https://hit.vivatracker.com/Tracker/Tracker.aspx?StoreID=217&StartDate=2/7/2019&EndDate=2/7/2019&Deacts=Y');
</script>
</body>
</html>
谢谢。