var x = 0;
if (x == 0) {
$('#tap').click(function() {
$('#menuUser').show();
});
x = 1;
document.getElementById('var').innerHTML = "" + x + "";
}
else if (x == 1) {
$('.#wpId').click(function() {
$('#menuUser').hide();
});
x = 0;
}
,當我用它來隱藏#menuUser
如果x=1
,但沒有奏效。隱藏DIV點擊包裝
$? ID和班級? – pregmatch
爲什麼在jQuery加載時使用'getElementById'? –
你只是設置一些事件的處理程序,而不是執行它們! –