谷歌浏览器出错?

发布于 2024-11-27 09:45:15 字数 1648 浏览 0 评论 0原文

我列出了目录中的文件,每个文件都有一个删除链接,在 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 . "&nbsp;<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

霓裳挽歌倾城醉 2024-12-04 09:45:15

您的

标记均错误且不匹配。


标签不能有内容;您应该始终将其设置为自闭合标签 (
)

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 />)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文