1234567891011121314151617 |
- <style type="text/css">
- .exception-btn{cursor: pointer;color: red;text-decoration: underline;font-weight: bolder;}
- .exception-btn:link{color:red;}
- .exception-btn:visited{color:red;}
- .exception-btn:hover{color:red;}
- .exception-btn:active{color:red;}
- /*a.h:active,a.h:link,a.h:visited {color:#999;} a.h:hover,a.h:focus {color:#999;background:transparent;}*/
- </style>
- <?php if(isset($stuIspErroMsg[$rt['studentId']]) && $stuIspErroMsg[$rt['studentId']]):?>
- <?php
- $ispErrorMsg = implode('<br/>', $stuIspErroMsg[$rt['studentId']]);
- ?>
- <a class="exception-btn" style="font-size:12px" onclick="layer.alert('<?php echo $ispErrorMsg;?>');" title="点击我">异常</a>
- <?php else:?>
- <span class="label label-sm label-danger" style="font-size:12px">未生成</span> <!--红-->
- <?php endif;?>
|