我正在尝试编写一个基于 Wicket 的网络服务。现在我的代码并不复杂,但浏览器警告我第 1 行第 4 列有错误。\n原因是什么?
\n\n<!DOCTYPE html>\n<html xmlns:wicket="http://wicket.apache.org" xmlns:margin- \ntop="http://www.w3.org/1999/xhtml">\n<head>\n <meta charset="utf-8" />\n <title>Title</title>\n</head>\n<body>\n\n<div wicket:id="menu" id="menu" style="width: 100%; text-align: justify">\n <a wicket:id="toTheory" href="Theory.html">\xd0\xa1\xd0\xbf\xd1\x80\xd0\xb0\xd0\xb2\xd0\xba\xd0\xb0</a>\n <a wicket:id="toDirectoryInterface" \nhref="DirectoryInterface.html">\xd0\xa5\xd1\x80\xd0\xb0\xd0\xbd\xd0\xb8\xd0\xbb\xd0\xb8\xd1\x89\xd0\xb5 \xd1\x88\xd0\xb8\xd1\x84\xd1\x80\xd0\xbe\xd0\xb2\xd0\xb0\xd0\xbd\xd0\xbd\xd1\x8b\xd1\x85 \xd1\x84\xd0\xb0\xd0\xb9\xd0\xbb\xd0\xbe\xd0\xb2</a>\n</div>\n\n<form wicket:id="form" style="width: 90%; height: 90%">\n <div style="position: absolute;\n height: 50%;\n width: 50%;\n left: 20%; /* (100% - width) / 2 */\n top: 5%; /* (100% - height) / 2 */">\n <textarea wicket:id = "text" height="90%" width="90%" rows="60" \n cols="150" id="text"/>\n </div>\n\n</form>\n</body>\n</html>\nRun Code Online (Sandbox Code Playgroud)\n\n我已经尝试修复所有问题,但仍然不起作用。
\n