⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 calc.php

📁 通达60%源码
💻 PHP
字号:
<?

/* King DeZender(http://www.dezend.org) 2006-03-01 */





include_once 'inc/auth.php';

echo '

<html>

<head>

<title>计算控件设定</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">



<script>

function my_submit()

{

if(ITEM_NAME.value=="")

{

	 alert("控件名称不能为空");

	 return;

}

else if(ITEM_VALUE.value=="")

{

	 alert("计算公式不能为空");

	 return;

}



if(edit_flag==0)

{

	 var parent_window = parent.dialogArguments;

	 control_html="<input type=text  title=\\""+ITEM_NAME.value.replace("\\"","&quot;")+"\\" class=\\"CALC\\" value=\\""+ITEM_VALUE.value+"\\" style=\\"font-size:"+ITEM_SIZE.value+"\\">";

	 parent_window.EDIT_HTML.insertHtml(control_html);

}

else

{

	 oSelection = dialogArguments.document.selection.createRange();

	 sRangeType = dialogArguments.document.selection.type;



	 if (sRangeType == "Control")

	 {

 	oSelection(0).title = ITEM_NAME.value;

 	oSelection(0).value = ITEM_VALUE.value;

 	oSelection(0).style.fontSize = ITEM_SIZE.value;

		}

}



window.close();

}



//-- 获取控件属性 --

var edit_flag=0;

function LoadDo()

{

oSelection = dialogArguments.document.selection.createRange();

sRangeType = dialogArguments.document.selection.type;



if (sRangeType == "Control") 

{

	edit_flag=1;

	ITEM_NAME.value = oSelection(0).title;

	ITEM_VALUE.value = oSelection(0).value;

	ITEM_SIZE.value = oSelection(0).style.fontSize.replace("px","");

}

ITEM_NAME.focus();

}

</script>

</head>



<body topmargin="0" onload="LoadDo();">



<table border="0" cellspacing="1" width="100%" class="small" bgcolor="#000000" cellpadding="3" align="center">

<tr class="TableContent">

		<td nowrap>控件名称:

		</td>

		<td nowrap>

		 <Input name="ITEM_NAME" type="text" class="SmallInput" size="20">

		</td>

</tr>

<tr class="TableContent">

		<td nowrap>计算公式:

		</td>

		<td nowrap>

		 <textarea name="ITEM_VALUE" class="SmallInput" cols="26" rows="3"></textarea>

		</td>

</tr>

<tr class="TableContent">

		<td nowrap>字体大小:

		</td>

		<td nowrap>

		 <Input name="ITEM_SIZE" type="text" class="SmallInput" size="20" title="可选,默认13像素">

		</td>

</tr>

<tr>

		<td class="TableControl" colspan="2" align="center">

			<input type="submit" onclick="my_submit();" value="确 定" class="SmallButton">

		</td>

</tr>

</table>

</body>

</html>

';

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -