自动填充jsp中的文本框
我正在用jsp开发一个项目。
页面上有两个文本框。如果我选择第一个文本框,我会得到从 MySQL 数据库获取的国家/地区列表,我是使用 jQuery 完成的。现在的问题是:
如果第二个文本框中没有任何事件(特别是按钮),则应填充州/城市。
有人有什么想法吗?我使用了大部分JavaScript事件如onselect、onclick等但没有用。
而且我不应该使用下拉列表。
I'm developing a project with jsp.
There are two text boxes on the page. If I select first text box i get the list of countries fetching from MySQL database, I have done it with jQuery. now the problem is:
with out any events(especially buttons) automatically in the 2nd TEXT BOX the states/cities should be populated.
Does anybody have any idea? I used most of the JavaScript events such as onselect, onclick, etc. but no use.
And I'm not supposed to use a dropdown list.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用 .ajax 或 .get 从数据库中获取国家/地区列表?
如果是,请尝试使用 .getJSON 代替。您可以有效地提供一组响应,因此这意味着来自 AJAX 脚本 data.countries 的第一个响应和 json 数组中的第二个元素是 data.states。
jQuery
JSP
我希望这是有道理的,我已经很久没有做过 JSP了,这就是为什么我没有尝试编写它的原因,但是上面的伪代码应该是适用于任何脚本语言的理论。
Are you using .ajax or .get to get the list of countries from the database?
If you are, try using .getJSON instead. You can provide effectively an array of responses, therefore meaning your first response from the AJAX script data.countries and the second element in the json array is data.states.
jQuery
JSP
I hope this makes sense, I've not done JSP in ages which is why I've not attempted to code it, but the above seudo-code should be the theory applicable to any scripting language.