這篇文章主要介紹了HTML5打開本地app應用程式的方法,如果你的手機上安裝有支付寶,那麼在訪問支付寶手機網頁時就會自動打開支付寶app,否則在頁面上會提示你進行下載app,這是如何實現的?有興趣的夥伴們可以參考本文
本文為大家分享了HTML5開啟本機app應用程式的方法,具體內容如下
首先為了保證能夠開啟你的app,你必須要在androidManifest.xml中配置的filter中data的屬性表述。 androidManifest.xml程式碼如下:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.taoge" android:versionCode="2" android:versionName="3.24.03" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> <application android:allowBackup="true" android:configChanges="orientation|screenSize" android:icon="@drawable/logo" android:label="@string/app_name" android:logo="@drawable/logo" android:sharedUserId="android.uid.system" android:theme="@android:style/Theme.Light.NoTitleBar" > <activity android:name="xttblog.WelcomeActivity" android:excludeFromRecents="true" android:screenOrientation="portrait" android:theme="@android:style/Theme.Light.NoTitleBar" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> <data android:pathPrefix="/taoge/open" android:scheme="xttblog" /> </intent-filter> </activity> <activity android:name="xttblog.AntRepairActivity" android:label="@string/title_activity_ant_repair" > </activity> </application> </manifest>
其次,你要在你的網頁中造訪xttblog://taoge/open。可以使用的元素有很多,如:script,iframe,img等。使用它們的src屬性,訪問xttblog://taoge/open。 html5程式碼如下:
<!DOCTYPE HTML> <html> <script> function openapp(){ document.getElementById('xttblog').innerHTML='<iframe src="xttblog://taoge/open"></iframe>'; } </script> <body> <p style="display:none;" id="xttblog"></p> <input type="button" value="打开app" onclick="openapp();"> </body> </html>
以上是HTML5開啟本機app應用的範例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!