在 C++ 中,我可以显式定义构造函数和析构函数,然后在构造函数/析构函数中使用 cout << "C or D Called" 来确切知道在哪里。
但是在 JavaScript 中,我如何知道对象何时被破坏。下面的例子是我关心的情况。
我在超时时调用了一个内部函数,我想知道只要计时器运行,对象是否还活着,等待再次调用下一个。
用户点击调用控件
// Calls Control
控制调用消息
var message_object = new Message( response_element );
消息调用效果
new Effects().fade( this.element, 'down', 4000 );
message_object.display( 'empty' );
效果
/**
*Effects - build out as needed
* element - holds the element to fade
* direction - determines which way to fade the element
* max_time - length of the fade
*/
var Effects = function( )
{
this.fade = function( element, direction, max_time )
{
element.elapsed = 0;
clearTimeout( element.timeout_id );
function next()
{
element.elapsed += 10;
if ( direction === 'up' )
{
element.style.opacity = element.elapsed / max_time;
}
else if ( direction === 'down' )
{
element.style.opacity = ( max_time - element.elapsed ) / max_time;
}
if ( element.elapsed <= max_time )
{
element.timeout_id = setTimeout( next, 10 );
}
}
next();
}
};