I need jquery to change numbers in all of pages. for example i want change 1 to ? so i tried this way:
$("*").each(function(){
$(this).html( $(this).html().replace(1,"?") );
})
but this will change css rules and attributes also. is there any trick to escape css and attributes?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…