5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:
性别:秘密
最后登录:2017-08-08
http://allinhands.5d.cn/
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2004/07/23 | ChooseColorDlg Method
类别(ActiveX)
|
评论
(1)
|
阅读(280)
|
发表于 11:01
<SCRIPT> var sInitColor = null; function callColorDlg(){ if (sInitColor == null) //display color dialog box var sColor = dlgHelper.ChooseColorDlg(); else var sColor = dlgHelper.ChooseColorDlg(sInitColor); //change decimal to hex sColor = sColor.toString(16); //add extra zeroes if hex number is less than 6 digits if (sColor.length < 6) { var sTempString = "000000".substring(0,6-sColor.length); sColor = sTempString.concat(sColor); } //change color of the text in the div oDiv.style.color= sColor; sInitColor = sColor; } </SCRIPT> <BUTTON ID="ofntColor" TITLE="Choose Font Color" onclick="callColorDlg()">Choose Font color</BUTTON> <br> <br> <DIV id=oDiv CONTENTEDITABLE ALIGN=left STYLE="height:100; background-color:white; font-size:15pt; font-family:Arial; padding:10; border:2px inset #eeeeee; overflow:auto;"> Click the button to choose a font color using the choose color dialog. </DIV> <!--Create the Dialog Helper Object--> <OBJECT id=dlgHelper CLASSID="clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b" width="0px" height="0px"></OBJECT>
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
0
评论
Comments
日志分类
首页
[102]
.Net
[11]
VBScript
[1]
JScript
[51]
XML
[3]
HTML&CSS
[9]
ASP
[8]
ActiveX
[4]
Software
[10]
Other
[5]