-1

我需要你的帮助。我有一个按钮,它由 PHP 文件回显到 HTML 文件。单击按钮时,它使用窗口confirm()方法,但我想在 HTML 文件中使用“是”或“否”选项显示甜蜜警报 2 模式。

有谁知道我怎样才能做到这一点?

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 中调用它还是有更好的方法来做到这一点?

4

1 回答 1

2

我刚刚修改了你的代码。

$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;
    })
  }

希望它会工作:)

于 2017-05-23T06:50:03.767 回答