<td> </td>
</tr>
</table>
</div>
<div id="more" style="display: none; position: relative">
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td width="10%">预警类别:</td>
<td width="10%"><asp:CheckBox ID="cb_zhuji" runat="server" Text="主机" /></td>
<td width="11%"><asp:CheckBox ID="cb_fuji" runat="server" Text="辅机" /></td>
<td width="11%"><asp:CheckBox ID="cb_typeother" runat="server" Text="其它" /></td>
<td width="9%"> </td>
<td width="9%"> </td>
<td width="9%"> </td>
<td width="31%"> </td>
</tr>
<tr>
<td>预警性质:</td>
<td><asp:CheckBox ID="cb_nature_shutdown" runat="server" Text="停机" /></td>
<td><asp:CheckBox ID="cb_jiangchuli" runat="server" Text="降出力" /></td>
<td><asp:CheckBox ID="cb_anquan" runat="server" Text="安全隐患" /></td>
<td><asp:CheckBox ID="cb_huanbao" runat="server" Text="环保设备" /></td>
<td><asp:CheckBox ID="cb_nature_other" runat="server" Text="其它" /></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>预警专业分类:</td>
<td><asp:CheckBox ID="cb_qiji" runat="server" Text="汽机" /></td>
<td><asp:CheckBox ID="cb_boiler" runat="server" Text="锅炉" /></td>
<td><asp:CheckBox ID="cb_dianqi" runat="server" Text="电气" /></td>
<td><asp:CheckBox ID="cb_regong" runat="server" Text="热工" /></td>
<td><asp:CheckBox ID="cb_huaxue" runat="server" Text="化学" /></td>
<td><asp:CheckBox ID="cb_rangliao" runat="server" Text="燃料" /></td>
<td><asp:CheckBox ID="cb_tuoliu" runat="server" Text="环保(脱硫、电除尘)" /></td>
</tr>
<tr>
<td>预警原因分类:</td>
<td><asp:CheckBox ID="cb_design" runat="server" Text="设计" /></td>
<td><asp:CheckBox ID="cb_makeup" runat="server" Text="制造" /></td>
<td><asp:CheckBox ID="cb_setup" runat="server" Text="基建安装" /></td>
<td><asp:CheckBox ID="cb_debug" runat="server" Text="调试" /></td>
<td><asp:CheckBox ID="cb_shebeianquan" runat="server" Text="设备质量" /></td>
<td><asp:CheckBox ID="cb_adjust" runat="server" Text="运行调整" /></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><asp:CheckBox ID="cb_weihu" runat="server" Text="检查维护" /></td>
<td><asp:CheckBox ID="cb_leakage" runat="server" Text="四管泄露" /></td>
<td><asp:CheckBox ID="cb_protaction" runat="server" Text="保护动作" /></td>
<td><asp:CheckBox ID="cb_shutdown" runat="server" Text="缺煤停机" /></td>
<td><asp:CheckBox ID="cb_poor" runat="server" Text="煤质差" /></td>
<td><asp:CheckBox ID="cb_causeother" runat="server" Text="其它" /></td>
<td> </td>
</tr>
</table>
</div>
<script type="text/javascript">
//弹出/关闭 隐藏层
function ShowDiv(show_div) {
var div_msg = document.getElementById(show_div);
var input = document.getElementById("change");
if (div_msg.style.display == 'block') {
div_msg.style.display = 'none';
input.value = "更多选择";
}
else {
div_msg.style.display = 'block';
input.value = "收起";
}
};
//关闭弹出层
function CloseDiv(show_div) {
document.getElementById(show_div).style.display = 'none';
};
function Reset(){
var cks = document.getElementsByTagName("input");
for(var i=0 ;i<cks.length;i++)
{
if(cks[i].type.toLowerCase() =="checkbox" && cks[i].checked)
{
//如果选择框选中则清空
if(cks[i].checked.toString() == "true"){cks[i].checked = false;}
}
}
};
window.onload = function() {
parent.showNav();
}
//后台调用
ClientScript.RegisterStartupScript(ClientScript.GetType(), "myscript", "<script>ShowDiv('MyDiv1');</script>");
<!--弹出层-->
<div id="MyDiv1" class="white_content" >
<div>
<span οnclick="ShowDiv('MyDiv')" style="float: right; cursor: pointer"><img src="../../images/Close.gif"/></span>//关闭按钮
</div>
<iframe src="UnplannedOutageEdit.aspx" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"
width="100%" height="95%"></iframe>
</div>
<script type="text/javascript">
//弹出/关闭 隐藏层
function ShowDiv(show_div) {
var div_msg = document.getElementById(show_div);
if (div_msg.style.display == 'block') {
div_msg.style.display = 'none'
}
else {
div_msg.style.display = 'block'
}
};
function change() {
document.getElementById("btn_submit").click();
}
</script>