1
0

first commit

This commit is contained in:
2021-01-16 22:15:10 +08:00
commit f539b7e11f
30 changed files with 2381 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
function cnn_headerNav_Insert() {
$.ajax({
url: $("#jsrender-tmpl-headerNav").attr('src'),
type: "GET",
success: function (data) {
var tmpl = $.templates(data);
$('body').prepend(tmpl.render());
}
});
}