$.post("example.php",function(data){
alert(data); // result: undefined
})
Example.php
hello ie are you ok?
alert(data)
IEで未定義なのはなぜですか? 他のブラウザでも動作します。
$.post("example.php",function(data){
alert(data); // result: undefined
})
Example.php
hello ie are you ok?
alert(data)
IEで未定義なのはなぜですか? 他のブラウザでも動作します。