Nuha IT Ответов: 3

Передача переменной из текстового элемента управления в поисковую систему google custome CSE


Привет,

У меня есть текстовое поле на индексной странице, и я хочу, чтобы оно принимало значение из этого текста в поисковую систему google на другой странице.

как я могу передать эту переменную из управления в cse?

Это индексный код для передачи переменной

Response.Redirect("Search.aspx?parma=" + TextBox1.Text);


а это код cse

<script>
            (function () {
                var cx = '003646811200027851123:9ubv0q_x_z0';
                var gcse = document.createElement('script');
                gcse.type = 'text/javascript';
                gcse.async = true;
                gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
        '//www.google.com/cse/cse.js?cx=' + cx;
                var s = document.getElementsByTagName('script')[0];
                s.parentNode.insertBefore(gcse, s);
            })();
        </script>
        <gcse:search></gcse:search>

3 Ответов

Рейтинг:
14

Nuha IT

Все что мне было нужно это этот атрибут

<gcse:search queryparametername="q" xmlns:gcse="#unknown"></gcse:search>


Рейтинг:
1

Albert Sbnie

<script>
                  (function() {
                    var cx = 'CXXXXXXXXXXX';
                    var gcse = document.createElement('script');
                    gcse.type = 'text/javascript';
                    gcse.async = true;
                    gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
                        '//cse.google.com/cse.js?cx=' + cx;
                    var s = document.getElementsByTagName('script')[0];
                    s.parentNode.insertBefore(gcse, s);
                  })();
                  window.onload = function(){
                    document.getElementById('gsc-i-id1').value = '<?=$q?>';
                    $('.gsc-search-button').click();
                  };
                </script>
                <gcse:search></gcse:search>

<?=$q?>
это php способ вставки переменных в javascript


Richard Deeming

Какое это имеет отношение к уже решенному вопросу о ASP.NET-что?

Рейтинг:
0

Prasad Khandekar

Привет,

Пожалуйста, найдите ниже код, чтобы сделать это.

<!DOCTYPE html>
<html>
<head>
<title>Element V2: Google-hosted Layout Demo</title>

<!-- Put the following javascript before the closing </head> tag. -->
<script>
  (function() {
    var cx = '003646811200027851123:9ubv0q_x_z0';
    var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true;
    gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
        '//www.google.com/cse/cse.js?cx=' + cx;
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
  })();
</script>
</head>

<body>
<div>
  Element V2 Google-hosted Layout Demo: open the results page in a new window
</div>

<!-- Place this tag where you want the search box to render -->
<!--
  1) newWindow=true overwrites settings stored in CSE control panel.
  2) Or store your settings in CSE control panel "Look and Feel" tab:
     Choose where your Google-hosted results appear: "New Window" or
     "Current Window".
 -->
<gcse:searchbox-only newWindow=true></gcse:searchbox-only>
</body>

</html>

С уважением,