How to get position of an element in UIWebView?

后端 未结 3 454
情书的邮戳
情书的邮戳 2021-02-01 23:50

I have UIWebView loaded with html in my iPad Program. By using -webkit-column-width, I divided the html with several columns.

padding: 0px
height: 1024px
-webkit         


        
3条回答
  •  情歌与酒
    2021-02-02 00:05

    Here is the swift 4 version of @JohanKools answer https://stackoverflow.com/a/8307454

    func positionOfElement(withId elementID: String?) -> CGRect 
    {
        let js = "function f(){ var r = document.getElementById('%@').getBoundingClientRect(); return '{{'+r.left+','+r.top+'},{'+r.width+','+r.height+'}}'; } f();"
        let result = webView?.stringByEvaluatingJavaScript(from: String(format: js, elementID))
        let rect: CGRect = CGRectFromString(result!)
        return rect
    }
    

提交回复
热议问题