我有这样的其他人编写的代码。
<button onclick="javascript:confirm("Are you sure?");" id="confirm_button"/>
现在,为了向此按钮添加更多功能,我将单击事件附加到同一个按钮
$("#confirm_button").live("click",function(event){
//Need value from the confirm box.
//code goes here.
});
如何从事件侦听器中的第一个事件中获取值?我需要 if 我的代码才能工作。一种方法是我必须将此确认框移动到我的单击事件侦听器中,但要求不允许我这样做。谢谢