I have a span tag
US $99.00
I would like to grab it using pure javascript. JQuery or any other library is not allowed. Is that possible?
I recon that
getElementById('v4-25')
won't work since I have to specify class, too, correct?
Thank you,
So,
asdasdasdasdasd
var string = document.getElementById('v4-25');
document.getElementById('listprice').innerHTML = string;
should print value of 'v4-25' in 'listpirce' ?
H getElementById looks only at the id and since id values must be unique in the page, what you have proposed should work just fine.
以上就是javascript grabbing span tag with both class and id的详细内容,更多请关注web前端其它相关文章!