473,320 Members | 2,048 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Dw中的代码错误

1
When I used DW to make The website page, one line of The page showed "Tag must be paired,no start Tag :[</a>]" error, and "The value of attribute[href]must be in double quotes" error
Nov 10 '20 #1
1 3739
Banfa
9,065 Expert Mod 8TB
Those error are fairly self explanatory, somewhere in your page code you have a closing anchor tag </a> which does not have a matching, preceding opening tag <a>.

Probably the easiest way to find this would be a search on "</a>" and examine the code in all the locations it finds.

The second issue is inside an anchor tag you have used the href attribute but you have not put the value in quotes; you have
<a href=http:www.example.com/page.html> and it should be
<a href="http:www.example.com/page.html">

Again probably the easiest way to find that is search gor href and example all the places that it is found.
Nov 11 '20 #2

Sign in to post your reply or Sign up for a free account.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.