浏览 9609 次
锁定老帖子 主题:发布一个jQuery的颜色选择面板插件
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-06-17
插件发布页面:http://feiyu.asgard.cn/colorPicker.html 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2007-08-17
您好,用了您这个颜色插件感觉很不错,但有点不明白,为何我多选择几次后,IE提示 "运行速度太慢" 这样一个提示框,我的代码样式如下,烦请作者看看写法有何不妥当之处
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>颜色选择</title> </head> <body> <script type="text/javascript" src="../scripts/lib/jquery.laster.js"></script> <script type="text/javascript" src="../scripts/lib/jquery.colorPicker.js"></script> 标题栏颜色: <input name="titleColor" type="text" id="titleColor" size="10" maxlength="2" class="small_input" readonly="true"/> <img src="../images/icon/icon_color.gif" class="title_color_select" align="absmiddle" /> <br/> <script type="text/javascript"> <!-- // 设置标题颜色 $(".title_color_select").click(function(){ var o = $(this); o.colorPicker({ setValue: $(this).prev() }); }); //--> </script> </body> </html> |
|
返回顶楼 | |
发表时间:2007-08-23
不错的控件,发布到官方的plugin list吧
|
|
返回顶楼 | |