从我的Android应用程序(如果有Twitter应用程序可用)打开Twitter页面,或使用phonegap在默认浏览器中打开Twitter页面。

时间:2018-12-25 10:12:01

标签: android jquery twitter phonegap-plugins phonegap

我正在尝试从我的Android应用程序(如果有Twitter应用程序可用)打开Twitter页面,或使用phonegap在默认浏览器中打开Twitter页面。但是我遇到一个问题(目前无法到达用户,请稍后再试)。这是下面的代码。

<a class="intent" href="http://twitter.com/my page/" data-scheme="twitter://user?user_id=my page"><img src="img/twitter.png" alt="my page.twt" id="twitter" ></a>

<script>
$('a.intent').on('click', function (event) { 
        goToUri($(this).data('scheme'),  $(this).attr('href'));
        event.preventDefault();
    });
function goToUri(uri, href) {
    if (!window.open(uri)) {
    window.location = href;
    }
}
</script>

有人可以帮助我解决问题吗?

0 个答案:

没有答案