自定义Google搜索栏结果不可点击

时间:2018-07-17 06:37:19

标签: html

我有一个带有搜索栏的个人新标签起始页,可以在新标签中打开Goog​​le搜索

<form action="https://www.google.com/search?q="  target="_blank" method="get">
 <input type="text" name="q" >
 <input type="submit" value="Go">
 <button type="reset" value="reset">X</button>
</form>

Google结果页上的链接无法打开,如何解决此问题?

1 个答案:

答案 0 :(得分:-1)

查看CSS中是否包含以下内容:

pointer-events: none;

如果是这样,则应将其删除。