jQuery UI's Dialog doesn't work on ASP.NET

寵の児 提交于 2019-12-02 10:36:06

I think that this is caused because you are calling:

dlg.parent().appendTo(jQuery('form:first'));

at the close callback. This will move the dialog. Why don't you call this immediately after creating the dialog?

try chaning $(function() { to $(document).ready(function() {

also check where it fails with some sort of javascript debugger opera got builtin and FireFox got FireBug..

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!