- 원자 쉘 : https://github.com/atom/atom-shell
- 버전 : 나는 페이지를 포함 할
<webview>
태그를 사용하고
v0.20.2. <webview>
태그는 shadow-root
에 하나의 태그, <object id="browser-plugin-1 ...>
이 있습니다. 그래서이 태그에 대해 scrollTop
값을 설정하려고했습니다. <webview> 태그의 내용을 JavaScript에서 어떻게 스크롤 할 수 있습니까?
var webView = document.getElementById('webview tag id');
var elm = webView.shadowRoot.firstChild; // elm is object tag
console.log(elm.scrollTop); // 0
elm.scrollTop = 100;
console.log(elm.scrollTop); // 0
그러나 아무것도 앞으로 일어날
...그것은 외부에서
<webview>
태그 스크롤 위치를 제어 할 수 있습니까?
감사합니다. @paul. 나는이 'webView.executeJavaScript ("document.querySelector ('body ')와 같이 제어 할 수있다. scrollTop = 100;");' – snufkon