作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
通过按下一个按钮,我正在使用这段代码来完成
let urlW = URL(string: "https://www.wikipedia.org")
let svm = SFSafariViewController.init(url: urlW!)
self.navigationController?.pushViewController(svm, animated: true)
我想知道是否可以打开已在搜索栏中输入特定文本的同一页面,例如“colosseum”或类似内容;我该怎么办?
最佳答案
快速回答:使用 URL:https://en.wikipedia.org/w/index.php?search= {搜索词}
如果您访问该网站并进行基本搜索,您通常会找到类似 https://en.wikipedia.org/wiki/Colosseum
如果您拼错了搜索词并且网站没有得到很好的匹配,您将得到一个类似于 https://en.wikipedia.org/w/index.php?search=coloesumn
如果我使用这个 URL 进行简单的搜索,例如 tank
https://en.wikipedia.org/w/index.php?search=tank
我被重定向到 https://en.wikipedia.org/wiki/Tank
所以简而言之,您应该可以使用以下 URL
使用网址:https://en.wikipedia.org/w/index.php?search= {搜索词}
关于ios - 如何打开已在搜索栏中输入特定测试的维基百科主页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48562482/
我是一名优秀的程序员,十分优秀!