オートコンプリートを使用しています
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
その下には 2 つのページがindex.php
あり、ajx_page.php
index.php
<form name="send_coup_ajx_form" id="send_coup_ajx_form" method="post">
<select name="member_type" id="member_type">
<option value="customer_type">Customer</option>
<option value="BPartner_type">Business Partner</option>
</select>
<input type="text" name="sel_rad" id="resultant_text" />
<input type="submit" name="submit" value="go" />
</form>
<script type="text/javascript">
$(document).ready(function(){
$("#resultant_text").autocomplete("ajx_page.php", {
width: 260,
matchContains: true,
//mustMatch: true,
//minChars: 0,
//multiple: true,
//highlight: false,
//multipleSeparator: ",",
selectFirst: false
});
});
</script>
そして以下のコード
ajx_page.php
<?php
$select_type = $_GET['member_type'];
$type = $_GET['sel_rad'];
?>
テキストボックスに入力すると、次のようなエラーが表示されます
Notice: Undefined index: member_type in ajx_page.php on line 2
つまりmember_type
、そのページには入っていません..
そして、このコードをすべてコメントして、以下のコードを入れるとajx_page.php
<?php
echo "Name1\n";
echo "Name2\n";
echo "Name3\n"
?>
オートコンプリート機能リストを表示しています。しかし、そのオブジェクトの値を取得したいとき、member_type
それはエラーを言っています..
このオートコンプリート プラグインを使用して追加の値を渡すにはどうすればよいですか
@veeTrain に Image to overwriting 問題を追加しました