2
那麼,我告訴有超過一個菜單項上懸停一對夫婦單選按鈕一個div我有這個問題。JQUERY/CSS iPad問題:爲什麼雙擊需要選擇單選按鈕?
我的問題: iPad和iPhone上我需要直到他們選擇的單選按鈕,敲擊兩次。 (在桌面上沒有問題)
我的問題:我該如何做,用戶只需要點擊一次?
驗證碼:
(一)下面是顯示的代碼,菜單DIV:// when entering/leaving the popup, show/hide it slide.on('mouseenter', function() { $(this).css('display', 'block'); }) slide.on('mouseleave', function() { $(this).css('display', 'none').removeClass('open'); })
(b)還碼,即點擊到綁定單選按鈕:
// check if filter is applied and add active icon $('div.slide > fieldset > input').on('click', function() { if ($(this).hasClass('color_input')) { color_kleider.addClass('color_active'); } })
RES:
(一)看到直播網站:Outfitya
(b)見的這張照片在這裏:
什麼是'上(?「 」' –
Ohgodwhy
爲iPad,你也許應該使用的 代替 - 只是在開玩笑;) –
好吧,我點擊不工作要麼...不知道如何沒有點擊兩次? – ItsMeDom