투케이2K

409. (ios/swift5) [간단 소스] WKWebview 웹뷰 evaluateJavascript 사용해 웹 p 태그 innerText 값 변경 본문

IOS

409. (ios/swift5) [간단 소스] WKWebview 웹뷰 evaluateJavascript 사용해 웹 p 태그 innerText 값 변경

투케이2K 2024. 1. 26. 08:43

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : SWIFT5

 

[소스 코드]

            // ---------------------------------------------------------------
            // [웹 소스코드]
            // ---------------------------------------------------------------
            <div id="container">
                <p id = "p_tag_txt" style="width:100%; height:100%;">안녕하세요</p>
            </div>


            // ---------------------------------------------------------------
            // [Swift 소스 코드]
            // ---------------------------------------------------------------
            var script = "javascript:document.getElementById('p_tag_txt').innerText = '" + "안녕하세요. 투케이입니다." + "';"
            
            self.main_webview!.evaluateJavaScript(script) { (success, error) in
                if error != nil {
                    S_Log._F_(description: "JavaScript Result", data: [
                        "Error :: \(String(describing: error))"
                    ])
                }
                else {
                    S_Log._F_(description: "JavaScript Result", data: [
                        "Result :: Success"
                    ])
                }
            }
 

[결과 출력]


반응형
Comments