在第 15 行第 19 列陷入此错误:AttValue: "或'预期的?
我陷入了这个错误,它在 Chrome 中显示此消息,我不知道该怎么办,我检查了 ""
,但似乎没有任何问题任何想法???
This page contains the following errors:
error on line 15 at column 19: AttValue: " or ' expected
Below is a rendering of the page up to the first error.
这是我的js
<script type="text/javascript" src="../js/mootools-1.2-core-nc.js"></script>
<script type="text/javascript" >
window.addEvent('domready', function() {
$$('a.delete').addEvent('click', function(e) {
// alert("me lleva");
e.stop();
var id_archivo = this.get('id');
var nuevo = id_archivo.split('#');
var DeleteFile = new Request({
method: 'POST',
// data: 'id_archivo='+nuevo[1]+'&nuevo='+nuevo[0],
url: 'Controlador/ControladorBorrarArchivo.php? line15 id_archivo='+nuevo[1]+'&nuevo='+nuevo[0], line15
onRequest: function() {},
onSuccess: function() {
//$("page_container").load.periodical(2000,this, 'ControladorListarArchivos.php');
//this.load.periodical(5000, this);
// $("page_container").load.periodical(5000,this,'Controlador/ControladorBorrarArchivos.php');
//this.load.periodical(5000,this,'ControladorListarArchivos.php');
// $("page_container").load.periodical(5000,this,'ControladorListarArchivos.php');
},
onFailure: function(){alert('Error!');}
}).send();
// DeleteFile.send({ data: { 'archivo': id } });
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请尝试这个
Please try this
转义字符串中的斜杠。尝试在创建请求之前组装 url 字符串,然后执行类似的操作
Escape the slash in the string.Try assembling the url string before creating the request, then do something like