質問編集履歴
1
コードの記述がなく申し訳ありません。追記しました!
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,3 +5,27 @@
|
|
5
5
|
自社サーバーであっても検索ができず、action属性で設定しているURLに飛ぶだけな現状です。
|
6
6
|
|
7
7
|
何かWordpressで設定が必要なのでしょうか?
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
```ここに言語を入力
|
14
|
+
|
15
|
+
<div id="search-form-panel">
|
16
|
+
|
17
|
+
<form action="example.com" onfocus="_gaq.push(['_trackEvent', 'site_search', 'focus', 'ブログ検索窓']);" method="get">
|
18
|
+
|
19
|
+
<input type="hidden" name="_e_k" value="A">
|
20
|
+
|
21
|
+
<input name="keyword" type="text" placeholder="記事を検索する" onfocus="this.placeholder=''" onblur="this.placeholder='記事を検索する'" id="condition" class="search-keyword" value="">
|
22
|
+
|
23
|
+
<button id="submit02" type="submit" class="search-button" onclick="searchKeyWord()">
|
24
|
+
|
25
|
+
<i class="fa fa-search" aria-hidden="true"></i></button>
|
26
|
+
|
27
|
+
</form>
|
28
|
+
|
29
|
+
</div>
|
30
|
+
|
31
|
+
```
|