12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%@page language="java" pageEncoding="UTF-8"%>
- <!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=utf-8" />
- <title>覆冰监测--图标提示修改</title>
- <script type="text/javascript" src="/nwyj/scripts/business/em/icing/jquery-1.8.3.min.js"></script>
- <script type='text/javascript' src='/nwyj/scripts/cockpit/search/search_util.js'></script>
- <style type="text/css">
- #title_input{ width: 500px; height: 40px; margin: 70px 40px 0; line-height: 40px; font-size: 17px;}
- .btn_box{ margin: 30px auto 0; width: 200px; height: 44px;}
- .ut_btn{background-color: #f4f7f8;
- border: 1px solid #d3dbde; height: 45px; line-height: 27px;
- border-radius: 3px 3px 3px 3px; margin-top: -1px; margin-right: 20px;
- color: #000000; width: 80px; display: inline-block; cursor: pointer; text-align: center;}
- .ut_btn:hover{ background-color:#3c95c8; border: 1px solid #3c95c8; color: #ffffff;}
- </style>
- <script type="text/javascript">
- var su = new SearchUtil();
- var mid = null;
- $(function(){
- su = new SearchUtil();
- mid = su.resolveUrl().mid;
- });
- $(function(){
- $(".cancel_btn").on("click",function(){
- top.Dialog.close();
- });
- $(".ok_btn").on("click",function(){
- var ts = $.trim($("#title_input").val());
- window.parent.window.updateTitleByMarker(mid, ts);
- top.Dialog.close();
- });
- });
- </script>
-
- </head>
- <body>
- <input type="text" id="title_input" />
- <div class="btn_box"><button class="ut_btn ok_btn">确定</button><button class="ut_btn cancel_btn">取消</button></div>
-
- </body>
- </html>
|