在 MVC3 中有条件地填充 PartialView 控件
创建一个部分视图以输入一些个人详细信息。我必须包括 2 个下拉列表,1 个用于国家/地区,其他用于州。当我选择国家/地区为美国时,它希望填充数据库中的所有州名称。如果我们选择其他国家/地区,我想替换下拉列表对于文本框的状态。我怎样才能使它成为可能?
谢谢。
Creating a partialview for enter some personal details.I have to include 2 dropdownlist, 1 for country and other for states.When i select country as US then its want to populate all statenames from DB.If we select other country i want to replace dropdown for states to a textbox.How can i make it possible?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的建议是使用 jquery ajax 请求根据国家/地区值填充下拉列表选项。 ajax 请求可能指向另一个 PartialView,该 View 将根据参数返回下拉列表或文本框...
如果您在实现时遇到任何问题,请告诉我,我很乐意帮助您...
控制器中的操作:
您的部分视图下拉列表:
您的页面结构:
要获取下拉列表的 jQuery 代码:
My suggestion is to use jquery ajax request to populate the drop down list options depending on country value. The ajax request could point to another PartialView that will return dropdown or textbox depending on parameter...
Let me know if you'll have any troubles with implementation, I'll enjoy helping you...
Action in controller:
Partial View for your dropdown list:
Your page structure:
Your jQuery code to get drop down: