Jump to content
  • 0

Валидация ссылок с амперсандами и знаками равенства


DImaN
 Share

Question

Доброе время суток! Вопрос в следующем: есть сайт, у которого есть подобная ссылка.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>111</title>
</head>
<body>
<table id="myTable">
<tr><th width="170" align="left" style="border: 0px; font-weight: normal;">   <a href="http://my_link/index.php?do=cat&category=link">111</a><br /></th></tr>
</table>
</body>
</html>

При проверке на валидацию с помощью http://validator.w3.org/ выдаются следующие ошибки:

…/my_link/index.php?do=cat&category=link">111</

…/my_link/index.php?do=cat&category=link">111</

т.е. показывает ошибку:

1-я строка буква "с" стразу после амперсанда

2-я строка знак равенства после ?do

Но ведь с ссылкой все верно... В чем может быть проблема объясните пожалуйста. Как поправить это отсутствие валидности?

Edited by DImaN
Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0
Guest Гость_Anton_*

можно (но не нужно, просто как альтернативное решение) еще сделать финт ушами таким образом:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>111</title>
</head>
<body>
<table id="myTable">
<tr><th width="170" align="left" style="border: 0px; font-weight: normal;">
<![CDATA[
<a href="http://my_link/index.php?do=cat&category=link">111</a>
]]>
</th></tr>
</table>
</body>
</html>

Link to comment
Share on other sites

  • 0

Спасибо большое. Было достаточно только & не знал о таком :)

У меня еще один небольшой вопрос по ошибкам валидации (чтобы новый топик не создавать), а точнее вопрос по такой ошибке:

XML Parsing Error: Opening and ending tag mismatch: td line 135 and tr

</tr>

Из-за чего может быть данная ошибка. таких ошибок тоже почему-то много вылезло у меня. Спасибо за помощь

Edited by DImaN
Link to comment
Share on other sites

  • 0

часть кода:

...
<table align="center" width="192" cellspacing="0" cellpadding="0">
<tr>
<td width="192" align="center">
<table align="center" width="192">
<tr>
<td align="center">
<table align="center" border="0" width="192" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<table align="center" border="0" width="184" cellspacing="0" cellpadding="0">
<tr>
<td><img border="0" src="/images/topbg1.png" width="44" height="21" alt="" /></td>
<td style="background: url('/images/topbg2.png');" width="180"></td>
<td><img border="0" src="/images/topbg3.png" width="60" height="21" alt="" /></td>
</tr>
...

7-я снизу строка

Edited by DImaN
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy