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.
ajaxを使用してhtmlのすべてのタグの値を別のファイルに渡したいです。これは可能ですか
$.ajax({ url:"myp.php", type:'POST', data: //here I want to all possible element values in current html });
何か案は???
これを使用してすべてのフォームの要素を投稿できます
data : $('#form').serializeArray();