You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
304 B
JavaScript
15 lines
304 B
JavaScript
6 years ago
|
//document.write("<script language='javascript' type='text/javascript' src='/js/jquery.js'></script>");
|
||
|
|
||
|
|
||
|
/*
|
||
|
网站客户端代码基类
|
||
|
命名规则为“模块简称_函数功能简述_编写者简称”
|
||
|
*/
|
||
|
function TPublic_ClientScript_Base ()
|
||
|
{
|
||
|
this.test = function(aaa)
|
||
|
{
|
||
|
return "cccc";
|
||
|
}
|
||
|
}
|