forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoot.html
More file actions
30 lines (28 loc) · 784 Bytes
/
foot.html
File metadata and controls
30 lines (28 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<script type="text/javascript">
function validateControls() {
$(".form-control").removeClass("is-invalid");
var val = Page_ClientValidate();
if (!val) {
var i = 0;
for (; i < Page_Validators.length; i++) {
if (!Page_Validators[i].isvalid) {
$("#" + Page_Validators[i].controltovalidate).addClass("is-invalid");
}
}
}
return val;
}
</script>
<script async src="http://www.siteserver.cn/gtag.js"></script>
<script type="text/javascript">
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-114651168-1');
gtag('event', 'visit', {
'event_category': location.host,
'event_label': location.pathname
});
</script>