iOS 进阶

WKWebView---evaluateJavaScript

2018-12-07  本文已影响12人  初灬终
<!DOCTYPE html>
<html>
<head>
    <title>webView</title>
    <script type="text/javascript">
        function showAlert() {
            alert("helloworld");
        }
    </script>
</head>
<body>
    <button onclick="showAlert()">showAlert</button>
</body>
</html>

这里可以调用自定义的js方法,也可以直接使用js语句

[_webView evaluateJavaScript:@"showPrompt()" completionHandler:^(id _Nullable obj, NSError * _Nullable error) {

}];

[_webView evaluateJavaScript:@"alert('helloworld');" completionHandler:^(id _Nullable obj, NSError * _Nullable error) {

}];
image.png
上一篇下一篇

猜你喜欢

热点阅读