第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

請問一下在WebApp中怎么使用JS調(diào)用iOS的函數(shù)?

請問一下在WebApp中怎么使用JS調(diào)用iOS的函數(shù)?

吃雞游戲 2019-07-08 18:06:34
在WebApp中怎么使用JS調(diào)用iOS的函數(shù)
查看完整描述

4 回答

?
守著星空守著你

TA貢獻(xiàn)1799條經(jīng)驗(yàn) 獲得超8個贊

先看一下Web中,我們給h1標(biāo)簽添加一個onclick事件,讓它在被點(diǎn)擊之后,修改當(dāng)前的url。

Web中的HTML代碼

<html>

<head>

<script>

 

function getInfo(name)

{

    window.location = "/getInfo/"+name;

}

 

</script>

 

</head>

 

<body>

    <h1 onclick="getInfo('why')">Name</h1>

</body>

 

</html>

 

iOS中,先拖拽WebView,訪問localhost,然后通過WebView的委托事件監(jiān)聽url跳轉(zhuǎn)操作,并且把跳轉(zhuǎn)截取下來。

也就是說,在onclick的時候,普通瀏覽器灰跳轉(zhuǎn)到那個url,但是在iOS的這個WebView里面,這個跳轉(zhuǎn)會被攔截,

用這種方式可以巧妙地實(shí)現(xiàn)JS調(diào)用iOS的原生代碼:

 

//

//  DWViewController.m

//  DareWayApp

//

//  Created by why on 14-6-3.

//  Copyright (c) 2014年 DareWay. All rights reserved.

//

 

#import "DWViewController.h"

 

@interface DWViewController ()

 

@property (weak, nonatomic) IBOutlet UIWebView *myWebview;  // 主頁面

 

@end

 

@implementation DWViewController

 

- (void)viewDidLoad

{

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

 

// 適配iOS6的狀態(tài)欄

    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {

        _myWebview.frame =  CGRectMake(0,20,self.view.frame.size.width,self.view.frame.size.height-20);

    }

 

// 加載制定的URL

    NSURL *url =[NSURL URLWithString:@"http://localhost"];

    NSURLRequest *request =[NSURLRequest requestWithURL:url];

    [_myWebview setDelegate:self];

    [_myWebview loadRequest:request];

 

}

 

// 網(wǎng)頁中的每一個請求都會被觸發(fā)

-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType

{

       

    // 每次跳轉(zhuǎn)時候判斷URL

     

    if([request.mainDocumentURL.relativePath isEqualToString:@"/getInfo/why"])

    {

        NSLog(@"why");

        return NO;

    }

 

return YES;

}

 

- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


查看完整回答
反對 回復(fù) 2019-07-14
?
神不在的星期二

TA貢獻(xiàn)1963條經(jīng)驗(yàn) 獲得超6個贊

先看一下Web中,我們給h1標(biāo)簽添加一個onclick事件,讓它在被點(diǎn)擊之后,修改當(dāng)前的url。
Web中的HTML代碼:
<html>
<head>
<script>

function getInfo(name)
{
window.location = "/getInfo/"+name;
}

</script>

</head>

<body>
<h1 onclick="getInfo('why')">Name</h1>
</body>

</html>

查看完整回答
反對 回復(fù) 2019-07-14
  • 4 回答
  • 0 關(guān)注
  • 795 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號