使用Ajax进行jQuery序列化在IE9中不起作用

时间:2011-03-16 01:54:44

标签: jquery ajax internet-explorer-9

function myTimestamp(){  
    tstmp = new Date();      
    return tstmp.getTime(); 
}   
function showValues() {  
    var str = ($("#this").serialize());  
    $("#results").text(str);  
}  
$(":checkbox, :radio").click(showValues);  
$("select").change(showValues);  
showValues();  
function sendValues() {  
    var str = $("#this").serialize();  
    var response = $('input[name=product[]]:checked').val();  
    $.ajax({  
        url: "/post.php?avoidcache=' + myTimestamp();",  
        data: {str}  
        cache: false  
    });  
}

此脚本在Google Chrome中运行良好;但是当在IE中使用时,它只会执行一个选定的元素:其余的选定元素被截断。 有什么建议吗?

1 个答案:

答案 0 :(得分:1)

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />