自定义搜索引擎按钮点击(Custom search engine Button click)

2019-11-01 02:41发布

我试着去呼吁自定义搜索引擎的搜索按钮,点击功能。

目前,我尝试代码是:

<script type="text/javascript">
$(".gsc-search-button input[type=button]").click(function()
{
  alert("1");
});
</script>

不工作。

网站: http://akcijos.igloro.info/?q=Android

编辑:

:对后发现其解决在谷歌自定义搜索绑定click事件到“搜索”按钮

Answer 1:

其他计算器后这才发现解决方案。

原因:

()失败搜索框与在window.onload后谷歌JS API创建的,因此.bind。 解决了jquery.live问题()。

码:

<script type="text/javascript">
$("input.gsc-search-button[type=submit]").live('click', function()
{
  console.log("clicked");
  alert("1");
});
</script>

其他职位网址: 绑定click事件在谷歌自定义搜索“搜索”按钮



Answer 2:

你们是不是要覆盖按下按钮的默认操作? 你可以试试这样做:

$(".gsc-search-button input[type=button]").click(
    function(e)
    {
        e.preventDefault();
        alert("1");
    }
);


文章来源: Custom search engine Button click
标签: jquery click