Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的一个asp.net页面中使用带有jquery ui datepicker的thickbox,datepicker不可见,我也更改了datepicker的z索引,但没有任何结果,我该怎么办
您应该在出现thickbox之后初始化日期选择器(调用插件函数) 。通常在打开厚盒的链接上延迟调用会做,例如:
$("#thickbox_link").click(function(){ setTimeout(function(){ $("#datepickerdiv").datepicker(); }, 100); });