iOS經過點座標獲取js對應元素

前幾天遇到問題,知道屏幕的點,想要操做對應的內容,記錄下來,只是一個方法,很膚淺,深研究的話還有好多的問題須要解決web

   //模擬屏幕上的某一點
    CGFloat x = mainS.width/2,y = mainS.height/2-352;
    
    //js獲取點元素字符串
    NSString *jsn = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).tagName", x, y];
    
    //經過加載js獲取點對應節點元素名稱
    NSString * tagName = [_webView stringByEvaluatingJavaScriptFromString:jsn];
    
    NSLog(@"%@",tagName);
    
    //獲取對應元素並對其進行操做的字符串
    NSString * jsee = [NSString stringWithFormat:@"var obj = document.elementFromPoint(%f, %f); alert(obj);var event = {clientX:%f,clientY:%f};obj.click(event)",x,y,x,y];
    
    //加載字符串實現要的效果
    [_webView stringByEvaluatingJavaScriptFromString:jsee];
相關文章
相關標籤/搜索