PHP onclick confirm 到 Sweet Alert 2 确认
PHP onclick confirm to Sweet Alert 2 confirmation
我需要你的帮助 please.I 有一个按钮,该按钮由 PHP 文件回显到 HTML 文件。单击按钮时,它使用 window confirm()
方法,但我想使用甜蜜警报 2 模式在 HTML 文件中显示有或没有选项。
有谁知道我如何才能完成这项工作?
PHP回声:
$row['handler'] = "<a class=\"btn btn-detail btn-small\" href=\"user.php?act=cancel_order&order_id=".$row['order_id'].
"\" onclick=\"if (!confirm('".$GLOBALS['_LANG']['confirm_cancel'].
"')) return false;\">".$GLOBALS['_LANG']['cancel'].
"</a>";
我是否需要将脚本添加到外部文件并在内部调用它 PHP 或者有更好的方法来做到这一点?
我刚刚修改了你的代码。
$row['handler'] = '<a class="btn btn-detail btn-small" href="javascript:;" onclick="confirmation(\''.$GLOBALS['_LANG']['confirm_cancel'].
'\',\'user.php?act=cancel_order&order_id='.$row['order_id'].
'\')">'.$GLOBALS['_LANG']['cancel'].
'</a>';
您的 javascript 函数将如下所示
function confirmation(text,text2)
{
swal({
title: text,
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!',
cancelButtonText: 'No, cancel!',
confirmButtonClass: 'btn btn-success',
cancelButtonClass: 'btn btn-danger',
buttonsStyling: false
}).then(function () {
location.href=text2;
}, function (dismiss) {
return false;
})
}
希望它会起作用:)
我需要你的帮助 please.I 有一个按钮,该按钮由 PHP 文件回显到 HTML 文件。单击按钮时,它使用 window confirm()
方法,但我想使用甜蜜警报 2 模式在 HTML 文件中显示有或没有选项。
有谁知道我如何才能完成这项工作?
PHP回声:
$row['handler'] = "<a class=\"btn btn-detail btn-small\" href=\"user.php?act=cancel_order&order_id=".$row['order_id'].
"\" onclick=\"if (!confirm('".$GLOBALS['_LANG']['confirm_cancel'].
"')) return false;\">".$GLOBALS['_LANG']['cancel'].
"</a>";
我是否需要将脚本添加到外部文件并在内部调用它 PHP 或者有更好的方法来做到这一点?
我刚刚修改了你的代码。
$row['handler'] = '<a class="btn btn-detail btn-small" href="javascript:;" onclick="confirmation(\''.$GLOBALS['_LANG']['confirm_cancel'].
'\',\'user.php?act=cancel_order&order_id='.$row['order_id'].
'\')">'.$GLOBALS['_LANG']['cancel'].
'</a>';
您的 javascript 函数将如下所示
function confirmation(text,text2)
{
swal({
title: text,
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!',
cancelButtonText: 'No, cancel!',
confirmButtonClass: 'btn btn-success',
cancelButtonClass: 'btn btn-danger',
buttonsStyling: false
}).then(function () {
location.href=text2;
}, function (dismiss) {
return false;
})
}
希望它会起作用:)