我的公共静态是用户操作的接口——即 GUI。当用户在登录和注册表单上按回车键时,这里有两个绑定。
user656925
问问题
39 次
1 回答
1
我不确定我是否理解了这个问题,但为什么不这样呢?
/**
*Control
*/
var Control = ( function ()
{
var Control = function ( ) // constructor
{
};
Control.prototype.function_1 = function( ) // public - instance
{
};
Control.in = function()
{
new Control( 'signin' ).invoke();
};
Control.up = function()
{
new Control( 'signup' ).invoke();
};
Control.out = function()
{
AjaxNew.repeatUse( '&ajax_type=ControlSignOut', function( server_response_text ) { ajaxType( server_response_text, 0, 'simple' ); } );
};
Control.try = function()
{
AjaxNew.repeatUse( '&ajax_type=ControlTryIt', function( server_response_text ) { ajaxType( server_response_text, 0, 'simple' ); } );
};
return Control;
} () );
于 2012-04-12T21:54:40.523 回答