html 谷歌検索にキーワードをパラメータで渡す
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 谷歌検索にキーワードをパラメータで渡す相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
/* パラメータを渡す側 */
function send() {
var keyword="";
/* キーワード(エンコード) */
if (document.form1.keyword.value!=""){
keyword=encodeURIComponent(document.form1.keyword.value);
}
var pram=keyword;
/* アドレスにパラメータを付加 */
location.href="http:google.com/search?q="+pram;
return false;
}
</script>
<!-- ★送信フォーム [start] -->
<form action="#" method="get" name="form1" onsubmit="return send();">
<fieldset>
<legend>パラメータに渡す値を入力</legend>
<p>
検索キーワード:<input type="text" name="keyword" value="" size="20" />
</p>
<p>
<input type="submit" value="送信" />
</p>
</fieldset>
</form>
<!-- ★送信フォーム [end] // -->
</body>
</html>
以上是关于html 谷歌検索にキーワードをパラメータで渡す的主要内容,如果未能解决你的问题,请参考以下文章
html 谷歌検索にキーワードをパラメータで渡す
sh 谷歌:未指定キーワードを発生させずに検索する
sh あるキーワードを含むファイル,を使用しているファイルを検索する
php パラメーターで分岐
json パラメータ付きアンカースクロール判别
python URL·クエリパラメータのパース