作者:mobiledu2502881283 | 来源:互联网 | 2023-09-08 23:34
atom-shell:https:github.comatomatom-shell版本:v0.20.2我正在使用标记嵌入页面.<网页视图>标签有sha
> atom-shell:https://github.com/atom/atom-shell
>版本:v0.20.2
我正在使用标记嵌入页面. <网页视图>标签有shadow-root,它有一个标签,.所以我试着像这样为这个标签设置scrollTop值.
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
但没有发生任何事……
是否可以控制从外面标记滚动位置?
解决方法:
是的,请改为:
var webView = document.getElementById('webview tag id');
webView.executeJavascript("document.querySelector('body:first-child').scrollTop=100");