Dropdownlists 在 IE 中创建关键更改的回发
我创建了一个标签和一个下拉列表。该标签将下拉列表作为关联 ID。 如果我单击标签,然后使用鼠标向上或向下,下拉列表将为每次单击创建一个回发。这是非常烦人的,如果您单击下拉列表并使用向上键或向下键,或者如果您使用 IE 以外的其他浏览器,则不会发生这种情况。
是否可以解决此问题,以便您可以使用向上键和向下键而不会导致回发,并且首先按回车键创建回发(就像单击下拉列表而不是标签一样)?
I have created a label and a dropdownlist. The label has the dropdownlist as associated id.
If I click on the label and then uses the mouse up or down the dropdownlist creates a postback for each click. This is quite anoying and doesn't happen if you click on the dropdownlist and uses key-up or key-down, or if you uses another browser than IE.
Is it possibel to fix this, so you can use key-up and key-down without causing a postback, and first on the enter-key creates the postback (as it does if you click on the dropdownlist and not label)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 DropDownList.AutoPostBack 设置为 false。
Set
DropDownList.AutoPostBack
tofalse
.将
AutoPostBack
属性设置为 false。请参阅文档。
Set the
AutoPostBack
property to false.See the documentation.