Сообщение от bolschoymalchik
|
как заставить работать скрипт, если:
<p id="a" >какой-то текст</p>
<p id="b" >какой-то текст</p>
<p id="c" >какой-то текст</p>
...
<p id="n" >какой-то текст</p>
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<!--
<script src='http://code.jquery.com/jquery-latest.js'></script>
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
p {
font-size: 17px;
}
</style>
<script type='text/javascript'>
window.onload=function (){
(function (){
var o=document.getElementsByTagName('p');
for (var i=0; i<o.length; i++) {
o[i].onclick=(function (Obj){
return function (){
Obj.style.fontSize=(Obj.style.fontSize == '36px')? '17px': '36px';
};
})(o[i]);
};
})();
};
</script>
</head>
<body>
<p>Text 0</p>
<p>Text 1</p>
<p>Text 2</p>
</body>
</html>