当 autopostback 设置为 true 时,J-query-Styles 在复选框列表的 ListItems 上消失
我正在使用jquery设置复选框列表的样式,问题是,jquery设置复选框列表的样式,但是当按下列表项时,样式丢失,我猜这是由于autopostback = true,我无法禁用它,因为我想根据所选的选中项目调用回发来填充数据列表,是否有任何替代方案或任何建议。
我正在使用 http://www.no-margin-for-errors.com /projects/prettycheckboxes/ 设置复选框列表的样式
I am using jquery to style the checkboxlist, the problem is, jquery styles the check box list , but when the listitem is pressed , the style is lost, I guess it is due to autopostback=true, I cant disable it coz i want to call postback to populate the datalist depending on the selected checked item, is there any alternative or any suggestions .
I am using http://www.no-margin-for-errors.com/projects/prettycheckboxes/ to style the checkboxlist
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,您正在使用类似
$(document).ready(...);
的样式来设计页面。问题是它仅在页面最初加载时执行一次。但如果异步加载任何内容,它将失去动态风格。因此,您至少有两个选择:Sounds to me like you're styling the page in something like
$(document).ready(...);
The problem with that is that it only executes once when the page loads initially. But if anything is loaded asynchronously, it will lose dynamic style. So you have at least two options: