...
|
...
|
@@ -4,9 +4,14 @@ |
|
|
<head>
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
<title></title>
|
|
|
<style type="text/css">
|
|
|
*{margin:0;padding:0;color: #838383;}
|
|
|
table{font-size: 12px;margin: 10px;line-height: 30px; width: 80%; margin: 50px auto;}
|
|
|
.txt{width:300px;height:21px;line-height:21px;border:1px solid #d7d7d7;}
|
|
|
</style>
|
|
|
</head>
|
|
|
<body>
|
|
|
<table>
|
|
|
<table style="width: 420px; margin: 30px auto;">
|
|
|
<tr>
|
|
|
<td><label for="text"> 文本内容</label></td>
|
|
|
<td><input class="txt" id="text" type="text" disabled="true"/></td>
|
...
|
...
|
@@ -152,12 +157,6 @@ |
|
|
<td><input class="txt" id="title" type="text"/></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="2">
|
|
|
<label for="target">新窗口打开</label>
|
|
|
<input id="target" type="checkbox"/>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="2" id="msg"></td>
|
|
|
</tr>
|
|
|
</table>
|
...
|
...
|
@@ -217,7 +216,6 @@ |
|
|
}
|
|
|
$G("title").value = url ? link.title : "";
|
|
|
$G("href").value = url && trueUrl ? trueUrl : '';
|
|
|
$G("target").checked = url && link.target == "_blank" ? true : false;
|
|
|
$focus($G("href"));
|
|
|
|
|
|
function handleDialogOk(){
|
...
|
...
|
@@ -228,7 +226,6 @@ |
|
|
}
|
|
|
var obj = {
|
|
|
'href' : href,
|
|
|
'target' : $G("target").checked ? "_blank" : '_self',
|
|
|
'title' : $G("title").value.replace(/^\s+|\s+$/g, ''),
|
|
|
'_href':href
|
|
|
};
|
...
|
...
|
|