首页 热点资讯 义务教育 高等教育 出国留学 考研考公
您的当前位置:首页正文

WKWebView---evaluateJavaScript

2024-12-20 来源:化拓教育网
<!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
显示全文