点击取色
作者:cmscn 日期:2006-11-29
方法1:
==================================================
1、UBB JS调用文件style/ubb_help.js,请用UE或记事本打开。
在最后添加下列行
function jk_tColor()
{
var arr = showModalDialog("htmledit/selcolor.html", "", "dialogWidth:18.5em; dialogHeight:17.5em; status:0");
if (arr != null) { document.write_frm.tcolor.value = arr.substring(1,7); }
}
-------------------------------------------------------
2)调用的地方
<a title="主题字体颜色" language="javascript" onclick="jk_tColor();"><img src="htmledit/images/fgcolor.gif" width=23 height=22 align=absmiddle></a>
===================================================
方法2:
在需要调用的那页<%前面加上:
<script language=javascript>
<!--
function forum_slect_color()
{
var c=window.showModalDialog("htmledit/selcolor.html","s","dialogWidth=300px;dialogHeight=270px;status=0");
var d=c;
if (c && c!="")
{
window.document.all.item("bordercolor").bgColor=c;
if (d.length==7) { d=d.substr(1,d.length); }
window.document.all.tcolor.value=d;
}
}
-->
</script>
需要调用的地方加
<input type=text name=tcolor value='' size=10 maxlength=7> <a href='javascript:;' onClick="javascript:forum_slect_color();"><img border=0 src="htmledit/images/fgcolor.gif" width=23 height=22 align=absmiddle alt='点击选取主题字体颜色'></a> 请正确填写<font class=red_3>6</font>位颜色代码。
评论: 6 | 引用: 0 | 查看次数: 779
发表评论