由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
BuildingWeb版 - 求高手解答:history sniffing的问题
相关主题
Bay Area Drupal Camp is coming - November 3rd and 4th!http://www.doteasy.com/怎么样?
A comparison of some WWW Architecture紧急求教:网页只显示一半
about project 1news on the open clip art website
Welcome to visit my albuma hello world question
请教简单的问题php和其他CGI脚本语言的差别
Free computer books downloadcgi.pm: how to align the h1('hello')
Why mozilla show my php file in source code? (Redhat 7.3)how to change background color?
Help: how to get history of a URL?Different color text in same table
相关话题的讨论汇总
话题: color话题: hex话题: var话题: total
进入BuildingWeb版参与讨论
1 (共1页)
d******8
发帖数: 2191
1
下面的代码检测用户是否访问了https://www.hello-world.comhttps://www.hello-
xyz.com,如果有访问,link是红色的;否则,正常蓝色。在chrome控制台下运行了代
码,两个link一红一蓝,但是在使用newl.css('color'),newlx.css('color')或者
document.defaultView.getComputedStyle(newl.get(0)).color均返回rgb(0,0,238)。
请问是哪里的问题?
var style = document.createElement("style");
style.innerHTML="a:visited{color:red}";
document.head.appendChild(style);
var newl=$("Total immersion, Serious
fun! with Hello-World!
") .appendTo(document.body).css({'position':'fixed
','top':'100px','left':'700px'});
var newlx=$("Total immersion, Serious
fun! with Hello-World!
") .appendTo(document.body).css({'position':'fixed
','top':'200px','left':'700px'})
s****y
发帖数: 983
2
不需要js,最基本的css
/* unvisited link */
a:link {
color: blue;
}
/* visited link */
a:visited {
color: red;
}
d******8
发帖数: 2191
3
问题是用js读取color的时候结果都是rgb(0,0,238),是现在的浏览器不让读了吗?

【在 s****y 的大作中提到】
: 不需要js,最基本的css
: /* unvisited link */
: a:link {
: color: blue;
: }
: /* visited link */
: a:visited {
: color: red;
: }

s****y
发帖数: 983
4
是的

【在 d******8 的大作中提到】
: 问题是用js读取color的时候结果都是rgb(0,0,238),是现在的浏览器不让读了吗?
p*****u
发帖数: 214
5
function componentToHex(c) {
var hex = c.toString(16);
return hex.length == 1 ? "0" + hex : hex;
}
function rgbToHex(r, g, b) {
return "#" + componentToHex(r) + componentToHex(g) + componentToHex(b);
}

【在 d******8 的大作中提到】
: 问题是用js读取color的时候结果都是rgb(0,0,238),是现在的浏览器不让读了吗?
1 (共1页)
进入BuildingWeb版参与讨论
相关主题
Different color text in same table请教简单的问题
a question about printing html fileFree computer books download
遇到 “HTML 包含不安全的标记” 问题Why mozilla show my php file in source code? (Redhat 7.3)
问个WP的问题Help: how to get history of a URL?
Bay Area Drupal Camp is coming - November 3rd and 4th!http://www.doteasy.com/怎么样?
A comparison of some WWW Architecture紧急求教:网页只显示一半
about project 1news on the open clip art website
Welcome to visit my albuma hello world question
相关话题的讨论汇总
话题: color话题: hex话题: var话题: total