android 有什么工具查看手机上的js代码布局

JavaScript017

android 有什么工具查看手机上的js代码布局,第1张

简单来说就是运行在移动端浏览器上的网站。不管应用在什么地方,总之就是浏览器呗,可以通过JS来判断本地是否有某应用,实现方式实际就是将http协议转为本地软件协议。

如下:

<script language="javascript">

if (navigator.userAgent.match(/(iPhone|iPod|iPad)?/i)) {

var loadDateTime = new Date()

window.setTimeout(function() {

var timeOutDateTime = new Date()

if (timeOutDateTime - loadDateTime <5000) {

window.location = "要跳转的页面URL"

} else {

window.close()

}

},

25)

window.location = " apps custom url schemes "

} else if (navigator.userAgent.match(/android/i)) {

var state = null

try {

state = window.open("apps custom url schemes ", '_blank')

} catch(e) {}

if (state) {

window.close()

} else {

window.location = "要跳转的页面URL"

}

}

</script>

apps custom url schemes 是什么呢?

其实就是你与APP约定的一个协议URL,你的IOS同事或Android同事在写程序的时候会设置一个URL Scheme,

例如设置:

URL Scheme :app

然后其他的程序就可以通过URLString = app:// 调用该应用。

还可以传参数,如:

app://reaction/?uid=1

原理:500ms内,本机有应用程序能解析这个协议并打开程序,调用该应用;如果本机没有应用程序能解析该协议或者500ms内没有打开这个程序,则执行setTimeout里面的function,就是跳转到你想跳转的页面。

【转】

JavaScript不管是判断PC浏览器还是手机浏览器,都是通过User Agent 来判断。

<script type="text/javascript">

var browser={

versions:function(){

var u = navigator.userAgent, app = navigator.appVersion

return {

trident: u.indexOf('Trident') >-1, //IE内核

presto: u.indexOf('Presto') >-1, //opera内核

webKit: u.indexOf('AppleWebKit') >-1, //苹果、谷歌内核

gecko: u.indexOf('Gecko') >-1 &&u.indexOf('KHTML') == -1, //火狐内核

mobile: !!u.match(/AppleWebKit.*Mobile.*/)||!!u.match(/AppleWebKit/), //是否为移动终端

ios: !!u.match(/\(i[^]+( U)? CPU.+Mac OS X/), //ios终端

android: u.indexOf('Android') >-1 || u.indexOf('Linux') >-1, //android终端或者uc浏览器

iPhone: u.indexOf('iPhone') >-1 || u.indexOf('Mac') >-1, //是否为iPhone或者QQHD浏览器

iPad: u.indexOf('iPad') >-1, //是否iPad

webApp: u.indexOf('Safari') == -1 //是否web应该程序,没有头部与底部

}

}()

}

document.writeln(" 是否为移动终端: "+browser.versions.mobile)

document.writeln(" ios终端: "+browser.versions.ios)

document.writeln(" android终端: "+browser.versions.android)

document.writeln(" 是否为iPhone: "+browser.versions.iPhone)

document.writeln(" 是否iPad: "+browser.versions.iPad)

document.writeln(navigator.userAgent)

</script>