
27-03-2008, 23:05
|
 |
|
|
חבר מתאריך: 06.07.06
הודעות: 1,091
|
|
|
שאלה על כתיבה נכונה של קוד HTML או JS....
איפה אני יכול ללמוד איך לכתוב נכון בHTML? וגם בJS (למרות שאני עוד במהלך לימוד השפה).... כי פעם התעניינתי וניסיתי להכניס דף שכתבתי לפה: http://validator.w3.org/
וזה מראה לי המון שגיאות שאני לא מבין איך אני אמור לתקן אותן.
לדוגמא ניסיתי להכניס את הקוד הבא:
קוד:
<html dir="ltr">
<head>
<title></title>
<meta http-equiv='content-type' content='text/html; charset=windows-1255'/>
<script language="javascript">
function checkmath()
{
a=0;
if (document.math.a[1].checked==true) a++;
if (document.math.b[0].checked==true) a++;
if (document.math.c[0].checked==true) a++;
if (document.math.d[2].checked==true) a++;
alert("The right answers: a.5+5=10 b.50*10=500 c.4*(500-250)=1000 d.(540+500-200+159)/111=9 .");
alert("You answered "+a+"/4 questions right.");
alert("Your final score is: "+(a*25)+"/100 !");
}
</script>
</head>
<body>
<form name="math">
a. 5+5=?<br/>
<input type="radio" name="a" value="9"/>9 <input type="radio" name="a" value="10"/>10 <input type="radio" name="a" value="11"/>11<br/><br/>
b. 50*10=?<br/>
<input type="radio" name="b" value="500"/>500 <input type="radio" name="b" value="60"/>60 <input type="radio" name="b" value="5000"/>5000<br/><br/>
c. 4*(500-250)=?<br/>
<input type="radio" name="c" value="1000"/>1000 <input type="radio" name="c" value="800"/>800 <input type="radio" name="c" value="250"/>250<br/><br/>
d. (540+500-200+159)/111=?<br/>
<input type="radio" name="d" value="999"/>999 <input type="radio" name="d" value="99"/>99 <input type="radio" name="d" value="9"/>9<br/><br/>
<input type="button" value="check" onClick="checkmath();"/>
</form>
</body>
</html>
וזה מה שקיבלתי:
NET-enabling start-tag requires SHORTTAG YES. (קיבלתי את השגיאה הזאת המון פעמים)
end tag for element "HEAD" which is not open. (והHEAD קיים)
document type does not allow element "BODY" here. (מה לא בסדר במיקום של הBODY?)
ועוד הרבה שגיאות שאני לא מבין למה הן מופיעות.... בגלל שאני לא מציין DOCTYPE? אם כן אז איך עושים את זה?
ובכלל איך מקובל לכתוב היום? ואיפה לומדים את החוקים של הכתיבה....?
תודה מראש
_____________________________________
|