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 调用,我需要调用它并附加一些特定的参数,以便在 firebug 的 net 部分中有参数字段。
并且参数不是数据而是类型之类的类型,=必须将副本附加到调用
你想这样使用并传递数据..
jQuery.ajax({ type: "POST", url: "example.php", data: { identityid:0,userid:"<?php echo $user_id;?>" }, success: function() { } });