Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在某个点(理想情况下是行号)打开网页,或者在使用 R 或 python 在浏览器中打开 url 的 Xpath 查询(不是锚点)标识的点上打开网页。
webbrowser.open(url) shell.exec(url)
它会取决于使用的浏览器,还是需要由浏览器而不是用于打开它的脚本来控制?
这个想法是在网页中搜索一个词,并在包含搜索词的特定行打开页面,而不是仅仅打开 url。
您可能会喜欢 HTML,首先通过在页面上找到您想要的链接,然后使用您命名的特定 ID 创建一个新元素,然后告诉浏览器加载该编辑过的页面。
site: www.example.com <p> lorem ipsum </p>
然后你把p'sid改成id="scrollhere"
p
id
id="scrollhere"
site: www.example.com <p id="scrollhere" > lorem ipsum </p>
然后告诉您的浏览器加载www.example.com/#scrollhere. 诀窍是将编辑的页面获取到浏览器。
www.example.com/#scrollhere