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.
私は次のようなことをしようとしています
<button onclick="editUser('<?=id?>')">
Ajax でデータベースを更新する jquery 関数がありますが、更新する Id を関数に伝えようとしています。
代わりに、HTML を次のようにします。
<button id="myButton" data-id="12345678">
ページが読み込まれたら、次のようにします。
$("#myButton").click(editUser);
次にeditUser()
editUser()
var id = $(this).data("id");
関数は、関心のある ID を認識するようになりました。