我在 Struts 2 中使用 Ajax jQuery 插件 jar。我使用 Ajax 选择标记填充列表,但未填充列表。如果我使用<sj:autocompleter>
标签它工作正常。
这是我的代码:
<sj:select name="countryId" list="countryList" listKey="id" listValue="name"
headerKey="" headerValue="--Select Country--"
onchange="document.forms[0].action='city_countryChange'; document.forms[0].submit(); return true;"
required="required"></sj:select>
<sj:select>
标签有什么问题?