h5 청소 기능 호출

1973 단어
scan = null;//스캔 대상mui.plusReady(function () { mui.init(); startRecognize(); });
    function startRecognize(){  
       try{  
          var filter;  
         //   
         var styles = {frameColor: "#29E52C",scanbarColor: "#29E52C",background: ""}  
        //   
        scan = new plus.barcode.Barcode('bcid',filter,styles);  
        scan.onmarked = onmarked;   
        scan.onerror = onerror;  
        scan.start();  
        //   
        var flag = false;  
        document.getElementById("turnTheLight").addEventListener('tap',function(){  
           if(flag == false){  
              scan.setFlash(true);  
              flag = true;  
           }else{  
             scan.setFlash(false);  
             flag = false;  
           }  
        });  
      }catch(e){  
        
         }  
      };  
        function onerror(e){  

//alert(e); }; function onmarked( type, result ) { var text = ''; switch(type){ case plus.barcode.QR: text = 'QR: '; break; case plus.barcode.EAN13: text = 'EAN13: '; break; case plus.barcode.EAN8: text = 'EAN8: '; break; } scan.close(); $('#bcid').remove();//console.log(result.split('=')[1]); location.href='zhifu.html?storeid='+result.split('=')[1];
        };    
              
    //     
    function scanPicture() {  
        plus.gallery.pick(function(path){  
            plus.barcode.scan(path,onmarked,function(error){  
                plus.nativeUI.alert( " " );  
            });  
        },function(err){  
            plus.nativeUI.alert("Failed: "+err.message);  
        });  
    } 
    $('.mui-action-ss').on('tap',function(){
        scan.close();
        $('#bcid').remove();
        location.href='main.html';
    })

그러나 휴대전화는 스캔 페이지를 종료하면 검은색 상자가 생기는 문제가 있어 현재 해결하려고 노력하고 있다

좋은 웹페이지 즐겨찾기