Jquery Modal Dialog disables form elements

前端 未结 1 675
孤独总比滥情好
孤独总比滥情好 2021-01-20 14:04

When I set my jQuery dialog to model=true, it disables my form elements inside the dialog and I cannot use them, only the buttons. I have seen examples where the contents of

相关标签:
1条回答
  • 2021-01-20 14:49

    The z-index of the form is most likely the problem. Try setting it to "auto":

    #my_dialog_form {
        z-index: auto;
    }
    
    0 讨论(0)
提交回复
热议问题