您的位置:首页 > Web前端 > CSS

表格css,安全退出,使用response.write显示alert效果

2014-05-22 17:03 363 查看

漂亮的表格样式:

<style type="text/css">

#table table {

border-left: 1px solid #8fc4f1;

border-bottom: 1px solid #8fc4f1;

}

#table table tbody tr td {

border-right: 1px solid #8fc4f1;

border-top: 1px solid #8fc4f1;

background-color:#f2f6fb;

padding:2px 5px 2px 5px;

text-align:center;

}

#table table tbody tr td textarea{

resize:vertical;

width:200px;

}

}

</style>

Response.Write("<script>alert(\"cbIsShow_CheckedChanged\");</script>");

function opensubwin(url) {

window.open(url, "_blank");

window.opener = null;

window.open("", "_self");

window.close();

}

<li><a href="登录.aspx" onclick="opensubwin('登录.aspx');">安全退出</a></li>


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐