Fix CSS hover on iPhone/iPad/iPod

前端 未结 16 597
星月不相逢
星月不相逢 2020-12-02 14:53

I want to fix the hover effect on iOS ( change to touch event ) but I dont have any idea . Let me explain this . You have a text in your page :

16条回答
  •  醉梦人生
    2020-12-02 15:04

    Old Post I know however I successfully used onlclick="" when populating a table with JSON data. Tried many other options / scripts etc before, nothing worked. Will attempt this approach elsewhere. Thanks @Dan Morris .. from 2013!

         function append_json(data) {
         var table=document.getElementById('gable');
         data.forEach(function(object) {
             var tr=document.createElement('tr');
             tr.innerHTML='' + object.COUNTRY + '' + '' + object.PoD + '' + '' + object.BALANCE + '' + '' + object.DATE + '';
             table.appendChild(tr);
         }
         );
    

提交回复
热议问题