非表示の送信機能を備えたテキスト入力ボックスを実装しようとしています。そのため、フィールドには送信ボタンが添付されておらず、「Enter」キーが押されたときに送信されます。
コードを機能させる方法の例を次に示します。
<form method="get" action="<?php bloginfo('home'); ?>/"><p>
<input class="text_input" type="text" value="SEARCH: type & hit Enter" name="s" id="s" onfocus="if
(this.value == 'SEARCH: type & hit Enter') {this.value = '';}" onblur="if (this.value == '')
{this.value = 'SEARCH: type & hit Enter';}" />
<input type="hidden" id="searchsubmit" value="" /></p></form>
これが私が働けないコードです:
<p>Have us call you. Input your number:</p>
<input type="text" id="phone" name="phone" maxlength="10" size="10">
<input type="submit" value="Click-to-Call" onclick="window.open('http://secure.ifbyphone.com/clickto_status.php?click_id=34124&phone_to_call=' + getElementById('phone').value + '&key=asdfjknj3459dj38sdka92bva', 'Clickto' , 'width=200,height=200,toolbar=no,location=no, menubar=no, scrollbars=no, copyhistory=no,resizable=no')">
「onclick」部分のURLにGETリクエストを含むform属性を追加しようとしましたが、役に立ちませんでした。
これを機能させる方法について何か考えはありますか?