你们想要使用课堂而不是id。 但是,若不使用像JQuery这样的东西,那么 Java本不会因疏忽而发挥作用。
document.getElementsByClass = function(class){
var itemsfound = new Array;
var elements = document.getElementsByTagName( * );
for(var i=0;i<elements.length;i++){
if(elements[i].className == class){
itemsfound.push(elements[i]);
}
}
return itemsfound;
}
this will return an array of elements with the specified class. then you can use the following code as needed.
document.getElementsByClass( class ); // gives an array of elements of given class
document.getElementsByClass( class )[0]; // selects first element in array with given class
但是,如果你要使用JQuery的话,那就很简单:
$( .title ).html("Title 1 Text");
$( .title2 ).html("Title 2 Text");
希望以某种方式帮助。 che