次のコード:
<!doctype html>
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.5/require.min.js"></script>
<script>
require(["nothere.js"], function()
{
alert("onload!");
},
function onerror(e)
{
alert("error!");
console.log("error! - ", e);
});
</script>
</head>
</html>
Chrome と Firefox では、 nothere.jsファイルが存在せず、読み込めなかったため、予期したとおりにエラーが表示されます。
ただし、IE(すべてのバージョン)はonloadを示しています。何か案は?
フィドル