Dev: Console url detect

This commit is contained in:
surunzi
2016-03-12 23:50:55 +08:00
parent 35cf9768c6
commit 056f9359f0
7 changed files with 74 additions and 1 deletions

6
eustia/loadJs.js Normal file
View File

@@ -0,0 +1,6 @@
loadJs = function (url)
{
var script = document.createElement('script');
script.src = url;
document.body.appendChild(script);
};