0

//実際webscriptコルドバアプリ内ブラウザはデータがセッションに保存されて//

<script type="text/javascript"> 
    var lhnAccountN = "310904-1"; 
    var lhnButtonN = 38; 
    var lhnInviteEnabled = 1; 
    var lhnWindowN = 0; 
    var lhnDepartmentN = 36316; 
    var lhnChatPosition = 'bottomright'; 
</script> 

<a href="http://www.livehelpnow.net/products/live-chat-system" target="_blank" style="font-size:10px;" id="lhnHelp">best live chat</a> 

<script src="//www.livehelpnow.net/lhn/widgets/chatbutton/lhnchatbutton-current.min.js" type="text/javascript" id="lhnscript"></script> 

外部スクリプトを開きます。接続が失われるたびに

//私は、in-appブラウザを使用して、イオンモバイルアプリでスクリプトを開きます。私は、ウィンドウを開くことができませんよ)(

$rootScope.testChat=function(){ 
    var options = { 
     location: 'no', 
     clearcache: 'yes', 
     toolbar: 'yes' 
    }; 

     var ref=window.open('http://www.livehelpnow.net/products/live-chat-system', '_blank', options); 

     ref.addEventListener('loadstop', function() { 
     ref.executeScript({ 
     code:"var lhnAccountN = '310904-1';var lhnButtonN = 38;var lhnInviteEnabled = 1;var lhnWindowN = 0;var lhnDepartmentN = 36316;var lhnChatPosition = 'bottomright';" 
    }) 
    ref.executeScript({ 
     code:"var chat; chat.src='www.livehelpnow.net/lhn/widgets/chatbutton/lhnchatbutton-current.min.js' chat.id='lhnscript'" 
    }) 
}) 
} 
<a href="http://www.livehelpnow.net/products/live-chat-system" target="_blank" style="font-size:10px;"ng-click="testChat()" id="lhnHelp">best live chat</a> 

答えて

0

cordova.InAppBrowser.openとのwindow.open()関数を交換して私を助けてください。詳細はhttps://cordova.apache.org/docs/en/latest/reference/cordova-plugin-inappbrowser/index.htmlまでご連絡ください。

+0

こんにちは、私たちはスクリプトを読み込むことができません。アプリ内ブラウザがうまくいきます。ウィンドウが開きます。 – Harish98

+0

@HarishKesariスクリプト全体をjsファイルに書き込んでから、スクリプトを読み込もうとしてください。実行中に発生する可能性があるエラーを調べるには、inspectデバイスを使用します。 –

関連する問題