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>
이것이 작동해야하나요 아니면 다른 방법이 있나요?