Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
javascriptの値を含むフォームを送信する必要があるという要件があります。その方法は「POST」タイプです。
フォームの送信は、新しいポップアップウィンドウで行う必要があります。現在のウィンドウは同じままである必要があります.....
HTML:
<form action="..." method="post" onsubmit="target_popup(this)"> </form>
Javascript:
function target_popup(form){ window.open(''、'formpopup'、'width = 400、height = 400、resizeable、scrollbars'); form.target ='formpopup'; }