js----> var con = confirm('这是一个确定加取消的提示窗口')

   if(con==true){

    document.write("点击了确定按钮")

   }else{

    document.write("点击了取消按钮")

   }

jquery--->$.confirm({

      title:'系统提示',

      message:‘确定要下载吗?’,

      ok:function(){

        document.write("正在下载中....")

      }

     })

相关文章:

  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2021-06-23
  • 2021-11-11
  • 2021-08-18
  • 2022-02-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-02
  • 2022-12-23
  • 2022-12-23
  • 2021-05-21
相关资源
相似解决方案