show modal after form submission until next page loads… does not work on safari?

后端 未结 4 1353
既然无缘
既然无缘 2021-01-04 21:13

I have a button like this

4条回答
  •  萌比男神i
    2021-01-04 22:09

    There some other ways as given below

    1: you can call a function on form submission. Just Add onsubmit="myFunction()" with function name (e.g myFunction) in form tag. As given below

    
        
    
    
    
    
    
    
    
    

    2: you can also call this function by adding onclick="myFunction()" in submit button.

    I am sure one of these will solve your issue.

提交回复
热议问题