App Android不会在智能手机上打开网页

时间:2016-03-08 12:36:10

标签: javascript html ionic-framework

我遇到了一个问题,当尝试从网络浏览器上的应用访问网站时,它可以正常工作,但是当我在智能手机中安装应用时,它并没有做出反应。我知道这是什么问题。

3 个答案:

答案 0 :(得分:0)

alert
<script>
// inside the .done function
  document.getElementById("output").innerHTML = data;
</script>

<span id="output"></span>

        

答案 1 :(得分:0)

您打算如何打开网站?

也许您缺少InAppBrowser,安装它然后按照文档中的说明打开您的网站:

var ref = cordova.InAppBrowser.open('https://google.com', '_blank', 'location=yes');

您可以使用ref收听某些事件或以编程方式关闭窗口。

答案 2 :(得分:0)

<ion-list  >	
            <ion-item class="list" >
				 <a class="item item-thumbnail-left" ng-href="{{x.Adress}}" ng-repeat="x in names|orderBy:'Name'" >
				  <img ng-src="{{x.Image}}">
				  <h2>{{x.Name}}</h2>
				  <p>{{x.Local}}</p>
				  <p>{{x.Descri}}</p>
				</a>
				
            </ion-item>
</ion-list>