gpt4 book ai didi

javascript 在 Internet Explorer 上不起作用

转载 作者:行者123 更新时间:2023-11-28 00:13:47 24 4
gpt4 key购买 nike

我有这个 javascript 代码:

<script type="text/javascript">
$(document).ready(function()
{
$('table#delTable td a.delete').click(function()
{
if (confirm("Are you sure you want to delete this row?"))
{
var id = $(this).parent().parent().attr('id');
var data = 'id=' + id ;
var parent = $(this).parent().parent();

$.ajax(
{
type: "POST",
url: "delete_row.php",
data: data,
cache: false,

success: function()
{
parent.fadeOut('slow', function() {$(this).remove();});
}
});
}
});


$('table#delTable tr:odd').css('background',' #FFFFFF');
});

</script>

这就是触发它的原因

<a href="#" class="delete" style="color:#FF0000;">

我用它从 mysql 中删除数据库行。它在 Firefox、Safari 上运行良好,但在 Internet Explorer 上没有任何反应。我在 ie7 和 ie9 上试过了,没有结果。你能给我一个关于我的问题的建议吗?

最佳答案

尝试在您的 ajax 请求中添加 dataType:'html',

关于javascript 在 Internet Explorer 上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13473293/

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