日期:2014-05-16  浏览次数:20496 次

点击按钮,弹出一个可编辑的对话框
本帖最后由 menghuan0625 于 2012-12-25 15:51:08 编辑

点击按钮可弹出图中的对话框,对话框中的内容和样式可以自己设置,请问如何可以实现呢

------解决方案--------------------
可以参考这个例子,仅ie可用http://www.jb51.net/article/20623.htm


或者这个有三种实现
http://www.baidu.com/link?url=pSIQGJqjJ4zBBpC8yDF8xDhcsH3e2F2pISoEbodOQtu6LT27XGYph2ZqBCLsjWi2K9uTPIXdxYpj_k9w_Pv0PDGqJDMVlK

基本思路是讲弹出html放到div中,然后用另一个div实现遮罩
或者用js控制div显示的内容。
------解决方案--------------------
jquery弹出层,有很多,其中最著名的thickbox。
参阅:http://thickbox.net/
------解决方案--------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>弹出提示</title> 
<style> 
* {margin:0;padding:0;font-size:12px;} 
html,body {height:100%;width:100%;} 
#content {background:#f8f8f8;padding:30px;height:100%;} 
#content a {font-size:30px;color:#369;font-weight:700;} 
#alert {border:1px solid #369;width:300px;height:150px;background:#e2ecf5;z-index:1000;position:absolute;display:none;} 
#alert h4 {height:20px;background:#369;color:#fff;padding:5px 0 0 5px;} 
#alert h4 span {float:left;} 
#alert h4 span#close {margin-left:210px;font-weight:500;cursor:pointer;} 
#alert p {padding:12px 0 0 30px;} 
#alert p input {width:120px;margin-left:20px;} 
#alert p input.myinp {border:1px solid #ccc;height:16px;} 
#alert p input.sub {width:60px;margin-left:30px;} 
</style>
</head>
<body> 
<div id="content"> 
<a href="#">注册</a> 
</div> 
<div id="alert"> 
<h4><span>现在注册</span><span id="close">关闭</span></h4> 
<p><label>用户名</label><input type="text" class="myinp" onmouseover="this.style.border='1px solid #f60'" onfoucs="this.style.border='1px solid #f60'" onblur="this.style.border='1px solid #ccc'" /></p> 
<p><label>密 码</label><input type="password" class="myinp" onmouseover="this.style.border='1px solid #f60'" onfoucs="this.style.border='1px solid #f60'" onblur="this.style.border='1px solid #ccc'" /></p> 
<p><input type="submit" value="注册" class="sub" /><input type="reset" value="重置" class="sub" /></p> 
</div> 
<script type="text/javascript"> 
var myAlert = document.getElementById("alert"); 
var reg = document.getElementById("content").getElementsByTagName("a")[0]; 
var mClose = document.getElementById("close"); 
reg.onclick = function() 

myAlert.style.display = "block"; 
myAlert.style.position = "absolute"; 
myAlert.style.top = "50%"; 
myAlert.style.left = "50%"; 
myAlert.style.marginTop&nb