这是用jquery用外部.js编写的......
我有两个可以滑入和滑出视图的窗口,例如:
$(document).ready(function() {
// hides gallery1 as soon as the DOM is ready
$('#gallery1').hide();
// shows the menu on click
$('#showgal1').click(function() {
$('#gallery1').delay(490).show('slide', {direction:'left'});
$('#gallery2').hide('slide', {direction:'right'});
//need code to disable showgal1 and enable showgal2
});
$('#showgal2').click(function() {
$('#gallery2').delay(490).show('slide', {direction:'right'});
$('#gallery1').hide('slide', {direction:'left'});
//need code to disable showgal2 and enable showgal1
});
});
'gallery1' 和 'gallery2' 是带有 Flash 图像画廊的 DIV,而 'showgal1' 和 'showgal2' 是锚点的 id...
好像
<a href="#" id="showgal1">gallery 1</a>
当单击一个并重新启用另一个时,我找不到禁用 .click 功能的方法...
我想默认禁用“showgal1”,当“showgal2”事件发生时,它会删除属性并禁用“showgal2”,直到单击“showgal1”...
.attr('disabled','disabled')
还没有工作...