我对本教程有疑问。
http://www.script-tutorials.com/autocomplete-with-php-jquery-mysql-and-xml
我有 2 个输入:
<input id="ra" type="text" autocomplete="off">
<input id="rb" type="text" autocomplete="off">
我想在输入输入时或在自动完成过程中将 2 个输入的数据发送到 .php 文件,如下所示:
$('#ra).autocomplete('data.php?mode=ra&rb='+$('#rb').val(), {
width: 200,
max: 5
});
$('#rb).autocomplete('data.php?mode=rb&ra='+$('#ra').val(), {
width: 200,
max: 5
});
但它不工作,我怎样才能使这个工作?谢谢。