<button onclick="callJsLogout()">
? ? ? ? ? ? ? ? ? ? 退出登錄
</button>
<script type="text/javascript">
function callJsLogout()
{
? ? var u = navigator.userAgent;
? ? if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {
? ? ? ? // 安卓手機處理
? ? ? ? // window.JsToNative.User.login("js調用了android中的login方法");
? ? ? ? callAndroid();
? ? } else if (u.indexOf('iPhone') > -1) {
? ? ? ? // 蘋果手機處理
? ? ? ? callJsIos();
? ? } else {
? ? }
}
function callAndroid(){
? ? Web.logout();//調用安卓端函數(shù)
? ? window.location.href="$url";//跳轉地址
}
function? callJsIos() {
? ? window.webkit.messageHandlers.logout.postMessage({body:''});//調用IOS端函數(shù)
? ? window.location.href="$url";//跳轉地址
}
</script>