我想取消一个暴露的元素,并在 onClick() 中一一暴露另一个元素。那可能吗?我的代码不起作用..这是js:
function tutStep1(){
jQuery('#workspace_menu').expose({
onLoad: function(event) {
jQuery('.next').fadeIn();
}
});
jQuery('.tutorial .next').click(function() {
jQuery.mask.close();
tutStep2();
});
});
function tutStep2(){
jQuery('.action_list').expose();
}
这是html
<span onclick="tutStep1();" >tutorial</span>
除非我点击跨度,否则面具不会再次打开。或者是否有另一种方法不关闭遮罩,并切换要暴露的元素?