jQuery/Ajax call - It Doesn't work on IE7

后端 未结 7 1830
别那么骄傲
别那么骄傲 2021-01-20 03:35

i make a Jquery function that (for the moment) call a function dinamically and print it with an alert. with firefox, chrome : it works! when i try on IE7 (the first time), i

7条回答
  •  一整个雨季
    2021-01-20 03:57

    I didn't understood the "fail", but here's another example..

    function pmNew(mexid) {
        $.post("./asynch/asynchf.php", {mexid: mexid, id: "pmnew"},
            function(msg) {
                $("#pmuser").html('PANEL ('+msg+')');
            }
        });
    }
    

提交回复
热议问题