我当然验证了该元素的存在。
我什至已经验证您可以读取该元素值。
但就页面的输出而言,没有任何效果(元素不可见)。
// debug verificatoin
alert('debug on: domMenu.drop_down_element.style.visibility: ' + domMenu.drop_down_element.style.visibility );
// write action
domMenu.drop_down_element.style.visibility = 'visible';
这是代码......它在第一次运行时工作......但之后失败......这是我相信的javaScript中的逻辑问题......这是旧代码......并且有一种奇怪的风格。
var domMenu =
{
TIME_DELAY: 1000,
time_out_id: 0,
drop_down_element: 0,
top_mouse_over: function ( id )
{
if( !domMenu.drop_down_element )
{
domMenu.drop_down_element = document.getElementById( 'wrap_drop_down_new' );
domMenu.top_element = document.getElementById( 'top_new' );
}
clearTimeout( domMenu.time_out_id );
domMenu.show_menu();
},
bottom_mouse_over: function()
{
clearTimeout( domMenu.time_out_id );
},
mouse_out: function()
{
domMenu.time_out_id = setTimeout( domMenu.hide_menu, domMenu.TIME_DELAY );
},
hide_menu:function()
{
domMenu.drop_down_element.style.visibility = 'hidden';
domMenu.top_element.style.border = '1px solid #faf7f7';
},
show_menu:function()
{
alert('debug on: domMenu.drop_down_element.style.visibility: ' + domMenu.drop_down_element.style.visibility );
domMenu.drop_down_element.style.visibility = 'visible';
domMenu.top_element.style.border = '1px solid #cfcaca';
domMenu.top_element.style.borderBottom = '3px solid #cfcaca';
}
};
回答
这是状态问题,所以我一直拉菜单元素。这是对我不明白的问题的 hack 修复。
var domMenu =
{
TIME_DELAY: 1000,
time_out_id: 0,
drop_down_element: 0,
top_mouse_over: function ( id )
{
domMenu.drop_down_element = document.getElementById( 'wrap_drop_down_new' );
domMenu.top_element = document.getElementById( 'top_new' );
clearTimeout( domMenu.time_out_id );
domMenu.show_menu();
},
bottom_mouse_over: function()
{
clearTimeout( domMenu.time_out_id );
},
mouse_out: function()
{
domMenu.time_out_id = setTimeout( domMenu.hide_menu, domMenu.TIME_DELAY );
},
hide_menu:function()
{
domMenu.drop_down_element.style.visibility = 'hidden';
domMenu.top_element.style.border = '1px solid #faf7f7';
},
show_menu:function()
{
// alert('debug on: domMenu.drop_down_element.style.visibility: ' + domMenu.drop_down_element.style.visibility );
domMenu.drop_down_element.style.visibility = 'visible';
domMenu.top_element.style.border = '1px solid #cfcaca';
domMenu.top_element.style.borderBottom = '3px solid #cfcaca';
}
};