0
私のアプリからブラウザでリンクを開くためのコードは、intel xdkとcordovaプラグインのアップデート版に最適です。私はクロスウェブサイトを使用しています。intel xdkを使用してアプリケーションからリンクを開くための作業用コードとは何ですか?
現在、これは私のコードですが、work'nではありません。
<script>
function join_browser(){
var ref = window.open('https://www.example.com/join', '_blank', 'location=yes');
ref.addEventListener('loadstart', function(event) { alert('start: ' + event.url); });
ref.addEventListener('loadstop', function(event) { alert('stop: ' + event.url); });
ref.addEventListener('loaderror', function(event) { alert('error: ' + event.message); });
ref.addEventListener('exit', function(event) { alert(event.type); });
}
</script>
<label class="text-style text-center">No account? <a href="#" onclick="join_browser(); return false;"> Register here. </a>
</label>
http://stackoverflow.com/questions/24377913/xdk-open-link-in-browser-without-using-cordovaあなたもクロスポストしているようだ... https://software.intel.com/en-us/forums/debug-solutions/topic/635159 –
@ Hack-Rはい、それはIntelコミュニティの私のポストだった回答)。そして私はすでにあなたが与えたstackoverflowのリンクを解決しようとしました。これは、新しいバージョンのintel xdk用です。 - > intel.xdk.device.launchExternalはもう動作しません!私は見る。 –
将来の参照のために、SOはユニークなコンテンツを求めているため、ここでクロス質問をすることは望ましくありません。私は個人的に本当に気にしていません。 –