谷歌浏览器出错?
我列出了目录中的文件,每个文件都有一个删除链接,在 Firefox 中一切正常,但在 Chrome 中,当我想显示列表时,我收到此错误,我不知道如何修复它
此页面包含以下错误:
第 4 行第 44 列错误:开始和结束标记不匹配:根行 0 和 br 下面是出现第一个错误之前的页面呈现。
这是我的脚本:
<script type="text/javascript">
window.addEvent('domready', function() {
$$('a.delete').addEvent('click', function(e) {
e.stop();
var id = this.get('id');
var DeleteFile = new Request({
// method: 'POST',
// data: 'archivo='+id,
url: 'deletefile.php?archivo='+id,
onRequest: function() {},
onSuccess: function(text, xmlanswer) {
//alert(text);
$('page_container').load('script2.php');
},
onFailure: function(){alert('Error!');}
}).send();
// DeleteFile.send({ data: { 'archivo': id } });
});
});
</script>
<?php
$ruta = "./uploadedfiles/";
$directorio = dir($ruta);
$types = array('jpg', 'jpeg', 'txt', 'gif', 'png', 'doc', 'docx', 'pdf', 'xlsx', 'pptx');
$identificador = "";
while ($archivo = $directorio->read()) {
$division = explode(".", $archivo);
$extension = end($division);
$identificador = $archivo;
if(in_array($extension, $types)){
echo $archivo . "<a id=\"". urlencode($identificador)."\" href=\"#\" class=\"delete\">Delete</a></br>";
//echo $archivo . " <a id=\"". $identificador."\" href=deletefile.php?archivo=" . urlencode($archivo) .">Delete</a><br>";
//echo $archivo. "<a id=refresh href=# >Delete</a><br> ";
}
}
$directorio->close();
?>
I am listing files from a directory and for each one there is a delete link, in firefox all works but with chrome when I want to display the list, I get this error, I dont know how to fix it
This page contains the following errors:
error on line 4 at column 44: Opening and ending tag mismatch: root line 0 and br
Below is a rendering of the page up to the first error.
this is my script:
<script type="text/javascript">
window.addEvent('domready', function() {
$('a.delete').addEvent('click', function(e) {
e.stop();
var id = this.get('id');
var DeleteFile = new Request({
// method: 'POST',
// data: 'archivo='+id,
url: 'deletefile.php?archivo='+id,
onRequest: function() {},
onSuccess: function(text, xmlanswer) {
//alert(text);
$('page_container').load('script2.php');
},
onFailure: function(){alert('Error!');}
}).send();
// DeleteFile.send({ data: { 'archivo': id } });
});
});
</script>
<?php
$ruta = "./uploadedfiles/";
$directorio = dir($ruta);
$types = array('jpg', 'jpeg', 'txt', 'gif', 'png', 'doc', 'docx', 'pdf', 'xlsx', 'pptx');
$identificador = "";
while ($archivo = $directorio->read()) {
$division = explode(".", $archivo);
$extension = end($division);
$identificador = $archivo;
if(in_array($extension, $types)){
echo $archivo . "<a id=\"". urlencode($identificador)."\" href=\"#\" class=\"delete\">Delete</a></br>";
//echo $archivo . " <a id=\"". $identificador."\" href=deletefile.php?archivo=" . urlencode($archivo) .">Delete</a><br>";
//echo $archivo. "<a id=refresh href=# >Delete</a><br> ";
}
}
$directorio->close();
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
和
标记均错误且不匹配。
标签不能有内容;您应该始终将其设置为自闭合标签 (
)Your
<br>
and</br>
tags are both wrong and mismatched.The
<br />
tag cannot have content; you should always make it a self-closing tag (<br />
)