我正在使用swift 4,我想调用javascript <script tag>.
内部的函数
我正在WKwebview中加载以下html
self.ninaWebWV.loadHTMLString("<html><h1>CHECK THIS </h1><p> <a href=\"https://www.google.com\">Visit Google</a> <script> function hideText() {console.log(\"Print it\");} </script> </html>", baseURL: nil)
通过使用self.ninaWebWV.evaluateJavaScript(“ hideText();”,completionHandler:nil)
我猜它应该已经调用了该函数,但它没有调用该函数。
我搜索了很多内容,其中许多人都声明上述方法有效,但是对我来说不起作用,请任何人都可以帮助我。