HTML:如何通過javascript獲取值?
我想將gsearch
的值傳遞給q
參數。以下是我做的方式,但它不能工作。我應該怎麼做?
action="http://test.com/search.php?q=<script type="text/javascript">document.getElementById('gsearch').value;</script>">
更新:
在我的網站。我想做一個谷歌自定義搜索:所以我把下面的代碼放在首頁。 0156290304977:8texhu0mrk
谷歌搜索值。 gsearch.php
網頁,其中我把谷歌定製搜索代碼,並顯示當用戶輸入的gsearch
文本框中搜索文本,如果他點擊submi
噸按鈕搜索結果
<form method="get" action="http://test.com/gsearch.php?cx=0156290304977:8texhu0mrk&cof=FORID:11&ie=UTF-8&q=..." >
<input type="text" title="" value="" name="q" class="search-input" id="gsearch" />
<input type="submit" value="" name="sa" id="search-button"/>
</form>
現在,我想,。然後在gsearch.php
頁面上顯示搜索結果。
fatnjazzy答案是正確的,你要什麼做是沒有意義的。如果你的意思是別的,請更好地解釋。 –
我很抱歉,我嘗試fatnjazzy answer.but它不起作用。該行動=「http://test.com//gsearch.php?cx=015290304348117:8tbxhu0mrk&cof=FORID:11&ie=UTF-8&q=theinput」 – zhuanzhou
是的,它的工作原理。提交後,寫入文本框的值將被附加到表單操作URL。這就是HTML格式如何工作,當你有'get'方法時,這是基礎。你必須錯過別的東西或不解釋你想要做的事情。 –