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。