Blame view
static/ueditor/dialogs/anchor/anchor.html
1.59 KB
| 
831eac332
 
 | 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40  | 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
      "http://www.w3.org/TR/html4/loose.dtd">
  <html>
      <head>
          <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
          <title></title>
          <style type="text/css">
              *{color: #838383;margin: 0;padding: 0}
              html,body {font-size: 12px;overflow: hidden; }
              .content{padding:5px 0 0 15px;}
              input{width:210px;height:21px;line-height:21px;margin-left: 4px;}
          </style>
      </head>
      <body>
          <div class="content">
              <span><var id="lang_input_anchorName"></var></span><input id="anchorName"  value="" />
          </div>
          <script type="text/javascript" src="../internal.js"></script>
          <script type="text/javascript">
              var anchorInput = $G('anchorName'),
                  node = editor.selection.getRange().getClosedNode();
              if(node && node.tagName == 'IMG' && (node = node.getAttribute('anchorname'))){
                  anchorInput.value = node;
              }
              anchorInput.onkeydown = function(evt){
                  evt = evt || window.event;
                  if(evt.keyCode == 13){
                      editor.execCommand('anchor', anchorInput.value);
                      dialog.close();
                      domUtils.preventDefault(evt)
                  }
              };
              dialog.onok = function (){
                  editor.execCommand('anchor', anchorInput.value);
                  dialog.close();
              };
              $focus(anchorInput);
          </script>
      </body>
  </html>
 |