gpt4 book ai didi

javascript - 无效的正则表达式标志 a

转载 作者:行者123 更新时间:2023-11-28 09:54:12 25 4
gpt4 key购买 nike

我使用 Silex Frame Work,并尝试使用以下代码删除表中列出的后端文件,但 Fire Bug 给我一条错误消息“无效的正则表达式标志 a”,当我单击“删除”链接时它会进入一个白色页面。代码是:

<script type="text/javascript">
$(document).ready(function(){
$(".delete-file").live('click', function() {
itemRow = $(this).parent().parent().parent();
fileId = $(this).attr('file_id');
deleteURL = $(this).attr('href');

var html = "<div> Are you sure, you want to DELETE this file? </div>";
var dialog = $(html).dialog({
buttons: {
"Ok": function() {
$.ajax({
url : deleteURL,
type : 'DELETE',
success : function(data) {
itemRow.remove();
dialog.dialog("close");
},
error : function() {
dialog.dialog("close");
}
});
},
"Cancel": function() {
$(this).dialog("close");
}
}
});
return false;
});
});
</script>

我使用:

   {% for row in result %}
<tr class="content {{ cycle(['odd', 'even'], loop.index) }}">
<td> {{ row.name }} </td>
<td> {{ row.user.username }} </td>
<td class="url"> <a href="{{ path('info', {"id" : row.file_id}) }}">{{ row.path | truncate(30) }}</a> </td>
<td> <img src="{{conf('base_url')}}/{{row.thumbnail}}"/> </td>
<td class="url"> {{ row.size | bytes_format}} </td>
<td> {{ row.description }} </td>
<td>
<span><a href="{{ path('delete', {'id' : row.file_id} ) }}" class="delete-file" file-id="{{row.file_id}}">DELETE</a></span>
</td>
</tr>
{% endfor %}

最佳答案

我找到了。这只是因为我的 .js 文件路径错误!!

关于javascript - 无效的正则表达式标志 a,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10395081/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com