alert是提醒,只有确定按钮!要想有取消得用confirmconfirm("是否取消?")

解决方案 »

  1.   

    用 confirm('....... ');  就会有取消按钮了
      

  2.   

    如果想要 改变图片 或标题 就只能用 window.showModalDialog() 方法打开一个页面 模拟你的要求了!
      

  3.   

    window.showModalDialog('index.html','参数','属性')在index.html页面 放图片 按钮(都要自己设定)
      

  4.   

    confirm Method--------------------------------------------------------------------------------Displays a confirmation dialog box that contains an optional message as well as OK and Cancel buttons.SyntaxbChoice = window.confirm( [sMessage])
    ParameterssMessage Optional. String爐hat specifies the message to display in the confirmation dialog box. If no value is provided, the dialog box does not contain a message. Return ValueBoolean. Returns one of the following possible values:true The user clicked the OK button. 
    false The user clicked Cancel button. ResThe title bar of the confirmation dialog box cannot be changed.