«submit» 태그된 질문

특정 대상에 데이터를 보내는 작업을 나타냅니다.



10
동적으로 양식 생성 및 제출
jQuery에 즉시 양식을 만들고 제출하는 방법이 있습니까? 아래와 같은 것. <html> <head> <title> Title Text Goes Here </title> <script src="http://code.jquery.com/jquery-1.7.js"></script> <script> $(document).ready(function(){alert('hi')}); $('<form/>').attr('action','form2.html').submit(); </script> </head> <body> Content Area </body> </html> 이것이 작동해야하나요 아니면 다른 방법이 있나요?
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.