温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:张凡简单新闻管理系统源码
当前文件:
ZhangfanNews/FCKeditor/editor/dialog/fck_button.html[3K,2009-7-2 9:33:41],打开代码结构图
ZhangfanNews/FCKeditor/editor/dialog/fck_button.html[3K,2009-7-2 9:33:41],打开代码结构图1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 2
<!-- 3
* FCKeditor - The text editor for Internet - http://www.fckeditor.net 4
* Copyright (C) 2003-2007 Frederico Caldeira Knabben 5
* 6
* == BEGIN LICENSE == 7
* 8
* Licensed under the terms of any of the following licenses at your 9
* choice: 10
* 11
* - GNU General Public License Version 2 or later (the "GPL") 12
* http://www.gnu.org/licenses/gpl.html 13
* 14
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15
* http://www.gnu.org/licenses/lgpl.html 16
* 17
* - Mozilla Public License Version 1.1 or later (the "MPL") 18
* http://www.mozilla.org/MPL/MPL-1.1.html 19
* 20
* == END LICENSE == 21
* 22
* Button dialog window. 23
--> 24
<html xmlns="http://www.w3.org/1999/xhtml"> 25
<head> 26
<title>Button Properties</title> 27
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 28
<meta content="noindex, nofollow" name="robots" /> 29
<script src="common/fck_dialog_common.js" type="text/javascript"></script> 30
<script type="text/javascript"> 31
32
var oEditor = window.parent.InnerDialogLoaded() ; 33
34
// Gets the document DOM 35
var oDOM = oEditor.FCK.EditorDocument ; 36
37
var oActiveEl = oEditor.FCKSelection.GetSelectedElement() ; 38
39
window.onload = function() 40
{ 41
// First of all, translate the dialog box texts 42
oEditor.FCKLanguageManager.TranslatePage(document) ; 43
44
if ( oActiveEl && oActiveEl.tagName.toUpperCase() == "INPUT" && ( oActiveEl.type == "button" || oActiveEl.type == "submit" || oActiveEl.type == "reset" ) ) 45
{ 46
GetE('txtName').value = oActiveEl.name ; 47
GetE('txtValue').value = oActiveEl.value ; 48
GetE('txtType').value = oActiveEl.type ; 49
50
GetE('txtType').disabled = true ; 51
} 52
else 53
oActiveEl = null ; 54
55
window.parent.SetOkButton( true ) ; 56
} 57
58
function Ok() 59
{ 60
if ( !oActiveEl ) 61
{ 62
oActiveEl = oEditor.FCK.EditorDocument.createElement( 'INPUT' ) ; 63
oActiveEl.type = GetE('txtType').value ; 64
oActiveEl = oEditor.FCK.InsertElementAndGetIt( oActiveEl ) ; 65
} 66
67
oActiveEl.name = GetE('txtName').value ; 68
SetAttribute( oActiveEl, 'value', GetE('txtValue').value ) ; 69
70
return true ; 71
} 72
73
</script> 74
</head> 75
<body style="overflow: hidden"> 76
<table width="100%" style="height: 100%"> 77
<tr> 78
<td align="center"> 79
<table border="0" cellpadding="0" cellspacing="0" width="80%"> 80
<tr> 81
<td colspan=""> 82
<span fcklang="DlgCheckboxName">Name</span><br /> 83
<input type="text" size="20" id="txtName" style="width: 100%" /> 84
</td> 85
</tr> 86
<tr> 87
<td> 88
<span fcklang="DlgButtonText">Text (Value)</span><br /> 89
<input type="text" id="txtValue" style="width: 100%" /> 90
</td> 91
</tr> 92
<tr> 93
<td> 94
<span fcklang="DlgButtonType">Type</span><br /> 95
<select id="txtType"> 96
<option fcklang="DlgButtonTypeBtn" value="button" selected="selected">Button</option> 97
<option fcklang="DlgButtonTypeSbm" value="submit">Submit</option> 98
<option fcklang="DlgButtonTypeRst" value="reset">Reset</option> 99
</select> 100
</td> 101
</tr> 102
</table> 103
</td> 104
</tr> 105
</table> 106
</body> 107
</html> 108






}
