我最近选择了一个有两个网站的新客户。我建立了他们的一个网站,但没有真正参与其他网站。他们的旧网站自2012年以来一直在运行,并且没有对其进行任何更改。突然之间,他们的导航按钮不再可点击。我试图调查它,但说实话,我很新,不知道如何处理我没有创建的代码。
网站代码的截屏视频。 http://screencast.com/t/v8UuHhDEpI
实际网站。 www.desertweed.com
有什么想法吗? 谢谢!
答案 0 :(得分:0)
menu.js
由此代码组成,用于创建菜单。您无法将表格数据单元格<td>
打包在<form>
中。您可以将<input>
包裹在<td>
内的表单中。
document.write('<DIV id=menu>');
document.write('<TABLE cellpadding=0 cellspacing=1 border=0 bgcolor="#000000" width="100%"><tr><td width="30" background="picts/button.gif">');
document.write('<IMG SRC="picts/spacer.gif" HEIGHT="5" WIDTH="30" border="0"><BR>');
document.write('</td><form action="index.html"><td>');
document.write('<input type="submit" value=" Home " onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="ag.htm"><td>');
document.write('<input type="submit" value="Agriculture" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="indust.htm"><td>');
document.write('<input type="submit" value="Industrial" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
//document.write('</td></form><form action="photos.htm"><td>');
//document.write('<input type="submit" value="Photos" //onmouseover="this.className=\'buttonon\'" //onmouseout="this.className=\'button\'" class="button"><br>');
document.write('<!-- COPY THE NEXT TWO LINES AND PASTE ABOVE THIS LINE TO ADD A BUTTON -->');
document.write('</td></form><form action="msds.htm"><td>');
document.write('<input type="submit" value="MSDS & Labels" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="contact.htm"><td>');
document.write('<input type="submit" value="Contact" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form>');
document.write('<td WIDTH="99%" background="picts/button.gif">');
document.write(' <br>');
document.write('</td></tr></table></DIV>');
像这样:
document.write('</td><td><form action="index.html">');
document.write('<input type="submit" value=" Home " onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</form></td><td><form action="ag.htm">');
现在说的一切。这些不应该是表,它们不应该是输入,它们不应该是表单,它们不应该由Javascript创建。这已经过时了十多年。