javascript警告框包含一个类的按钮

时间:2013-09-05 23:27:32

标签: javascript alert

如何使用包含类似此提交按钮的类的按钮的javascript警告框:

<input type="submit" class="lightbox">

或者有什么方法可以制作一个弹出并包含此提交按钮的JavaScript表单?

2 个答案:

答案 0 :(得分:1)

我会使用这段代码:

var doc = document, htm = doc.documentElement, bod = doc.body;
function E(e){
  return doc.getElementById(e);
}
function winOpen(clickId, url, name, height, width){
  var ht = innerHeight || htm.clientHeight || bod.clientHeight;
  var wd = innerWidth || htm.clientWidth || bod.clientWidth;
  ht = (height-ht)/2; wd = (width-wd)/2;
  E(clickId).onclick = function(){
    open(url, name, 'height='+height+',width='+width+',top='+ht+',left='+wd);
  }
}
// You would use this like 
winOpen('newWindow', 'wherever.html', 'windowName', 500, 500);

whatever.html应该是包含lightbox类的页面。

答案 1 :(得分:1)

标准浏览器提醒不具有样式 - 必须在代码中完成。如果您不想window.open新页面并愿意使用第三方库,jQueryUI是一个不错的选择。 Dialog是完全可设置的 - 是的,包括按钮。