前端調用 原生app 方法,通過 iframe 喚起 native
if( navigator.userAgent.indexOf('iPhone') >= 0 ) { var ifr = document.createElement('ifrmae'); ifr.src = 'xx://postToken'; ifr.style.display = 'none'; document.body.appendChild(ifr); } // 執行完成后的回調 function sendTokenToWrap ( token ) { // 返回值 alert( token ) }
