综合参考:

http://jingyan.baidu.com/article/47a29f242b180ac0142399f9.html

http://blog.csdn.net/hshl1214/article/details/46744387






function duihua()
{
alert("这个窗口是对话框!")
}

function queren(id)
{
var res=confirm("请选择点击一个按钮!");
if (res==true)
  { 
  //alert("你按下的是【确认】");
  //跳转到指定页面并传递id参数
  window.location.href="http://test.com/userlist?param="+id;
  }
else
  {
  alert("你按下的是【取消】");
  }
}

function tishi()
  {
  var t=prompt("请输入您的名字","KING视界")
  if (t!=null && t!="")
    {
    document.write("精彩MV就在," + t + "!属于你的世界")
    }
  }











示例:

JS点击按钮,提示确认后跳转网页,并可传递参数_第1张图片