我創建一個下拉菜單的移動網站點擊
http://gthost.dyndns.org/kudu/en/
當我點擊我的賬戶並點擊我們是誰後如何隱藏子菜單,子菜單仍顯示,,
我想點擊鏈接後隱藏它。
這是JavaScript代碼
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j(".account").click(function() {
var X = $j(this).attr('id');
if (X == 1) {
$j(".submenu").hide();
$j(this).attr('id', '0');
} else {
$j(".submenu").show();
$j(this).attr('id', '1');
}
});
//Mouseup textarea false
$j(".submenu").mouseup(function() {
return false
});
$j(".account").mouseup(function() {
return false
});
//Textarea without editing.
$j(document).mouseup(function() {
$j(".submenu").hide();
$j(".account").attr('id', '');
});
});
u能顯示你的HTML – PSR 2013-03-16 10:15:19
$Ĵ( '子菜單。')的CSS({顯示: 「無」})。你有沒有試過這個.. – sasi 2013-03-16 10:34:37
只有不行.. – 2013-03-16 12:11:31