我正在处理这种情况:
我已经意识到我无法使用JQuery将单个类添加到列表项中,因为颜色插件仅按id搜索(它使用getElementById,它与类没有并行)。
我必须排除addClass JQ函数,这很容易投入使用。
如果我可以在列表中插入id,5个明确定义的id,并且稍后在externalised颜色插件中给出一些指令来影响它们,那么该脚本才有效:
<ul>
<li><a href="" id="ontheflyone">pulled from the DB</a></li>
<li><a href="" id="ontheflytwo">pulled from the DB</a></li>
<li><a href="" id="ontheflythree">pulled from the DB</a></li>
<li><a href="" id="ontheflyfour">pulled from the DB</a></li>
<li><a href="" id="ontheflyfive">pulled from the DB</a></li>
</ul>
然后,说明:
document.getElementById(’id’).onmouseover = function() { 'ontheflyone','text','$color1' };
document.getElementById(’id’).onmouseout = function() { 'ontheflyone','text','$color2'};
document.getElementById(’id’).onmouseover = function() { 'ontheflytwo','text','$color1' };
document.getElementById(’id’).onmouseout = function() { 'ontheflytwo','text','$color2'};
etc.
我可以更改插件的javascript本身,但我认为使用JQuery以某种方式在我的html中添加id会更容易。
颜色插件是由Michael Leigeber编写的一段很棒的代码 我重现如下:
// main function to process the fade request //
function colorFade(id,element,start,end,steps,speed) {
var startrgb,endrgb,er,eg,eb,step,rint,gint,bint,step;
var target = document.getElementById(id);
steps = steps || 20;
speed = speed || 20;
clearInterval(target.timer);
endrgb = colorConv(end);
er = endrgb[0];
eg = endrgb[1];
eb = endrgb[2];
if(!target.r) {
startrgb = colorConv(start);
r = startrgb[0];
g = startrgb[1];
b = startrgb[2];
target.r = r;
target.g = g;
target.b = b;
}
rint = Math.round(Math.abs(target.r-er)/steps);
gint = Math.round(Math.abs(target.g-eg)/steps);
bint = Math.round(Math.abs(target.b-eb)/steps);
if(rint == 0) { rint = 1 }
if(gint == 0) { gint = 1 }
if(bint == 0) { bint = 1 }
target.step = 1;
target.timer = setInterval( function() { animateColor(id,element,steps,er,eg,eb,rint,gint,bint) }, speed);
}
// incrementally close the gap between the two colors //
function animateColor(id,element,steps,er,eg,eb,rint,gint,bint) {
var target = document.getElementById(id);
var color;
if(target.step <= steps) {
var r = target.r;
var g = target.g;
var b = target.b;
if(r >= er) {
r = r - rint;
} else {
r = parseInt(r) + parseInt(rint);
}
if(g >= eg) {
g = g - gint;
} else {
g = parseInt(g) + parseInt(gint);
}
if(b >= eb) {
b = b - bint;
} else {
b = parseInt(b) + parseInt(bint);
}
color = 'rgb(' + r + ',' + g + ',' + b + ')';
if(element == 'background') {
target.style.backgroundColor = color;
} else if(element == 'border') {
target.style.borderColor = color;
} else {
target.style.color = color;
}
target.r = r;
target.g = g;
target.b = b;
target.step = target.step + 1;
} else {
clearInterval(target.timer);
color = 'rgb(' + er + ',' + eg + ',' + eb + ')';
if(element == 'background') {
target.style.backgroundColor = color;
} else if(element == 'border') {
target.style.borderColor = color;
} else {
target.style.color = color;
}
}
}
// convert the color to rgb from hex //
function colorConv(color) {
var rgb = [parseInt(color.substring(0,2),16),
parseInt(color.substring(2,4),16),
parseInt(color.substring(4,6),16)];
return rgb;
}
所以,万分感谢有人可以告诉我如何动态添加这些ID,或者,也许,如何将javascript更改为目标类,
非常感谢,
扬
答案 0 :(得分:4)
所以你有一个普通的<ul></ul>
并希望给每个<li>
一个唯一的ID吗?
尝试使用jQuery命令"each":
$("li").each(function(index, element){$(element).attr("id", index);});
这将循环遍历所有<li>
元素,并将其数字索引(在jQuery已找到的元素数组中)的每个元素指定为“id”属性。
答案 1 :(得分:2)
如果你正在使用jquery,你可以使用这样的语法逐个获取一个元素(假设css类被称为'className':
$(".className").mouseover(function(){
alert("something");
});
使用id在jquery中执行相同的操作:
$("#idVal").mouseover(function(){
alert("something");
});