在选择下拉菜单中导航回同一页面而不清除控件?
我在页面上有一个文本框和一个下拉选项,以及一堆网址。
单击 url 导航回具有更新的 url 的页面(针对 asp.net MVC2 功能)。这不会导致文本框被清除。
在我的下拉“onchanged”事件中,我调用 window.location = url;
(url 是查询字符串中带有 sortOrder 的页面 url)...但这会导致页面文本框文本清除下来。
有什么方法可以让下拉菜单在选择更改时回发到页面而不清除文本框?
干杯,
詹姆斯。
I have a text box and a drop-down selection on a page, plus a bunch of urls.
Clicking on the urls navigate back to the page with an updated url (for asp.net MVC2 functionality). This does not cause the texbox to clear down.
On my dropdown "onchanged" event I call window.location = url;
(with url being the pages url with a sortOrder in the query string)... but this causes the pages text-box text to clear down.
Is there any way I can get the drop-down to postback to the page on selection changed and NOT clear down the text box?
Cheers,
James.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你说的“清除”是什么意思?下拉列表是否会丢失其所选项目(例如重置为默认值)?
What do you mean with "clear down"? Does the dropdown lose it's selected item (e.g. gets reset to a default value)?