我有以下代码
onclick='deleteTable("mytablename")'
在脚本执行之前,我是否可以弹出警告(您正在删除“mytablename”)。
由于
答案 0 :(得分:0)
如果确定要删除,请使用确认询问用户:
$result = confirm('are you sure of deleting a table?');
if($result){
//execute the js code because the user selected yes
}else{
return; //exit
}