前台页面:
1 <form name="main" method="post" >
2<tr>
3 <td height="10" width="170" align="left"><nobr>input your name
4 <input type="text" name="in_section_office_content" size="28">
5 <input type=text name="in_section_office">
6 <script language="Javascript">
7 new AutoSuggest(document.getElementById('in_section_office_content'),
8 new ACClient("${ctx}/autosuggest.do?method=query_xml&username=", "160px",
9 document.main.in_section_office,"USERNAME" ));
10 </script>
11 </td>
12 </tr>
ACClient脚本:
1this.objInput.value = node.getAttribute(disvalue);
2 document.main.in_section_office_content.value = node.getAttribute("USERNAME");
上面的代码主要是在前台页面中两个输入框需要显示具体表字段信息,objInput是第二个文本域要显示的内容(业务是需要USERNAME节点),in_section_office_content是第一个文本框显示的内容(在这里是test)
文章来源于领测软件测试网 https://www.ltesting.net/