IEでのJSの読み込みに問題があります。私のドキュメントレディは、Ctrl+Rを押した場合にのみ実行されます。これは、requirejsオプティマイザーとIEを使用する場合にのみ当てはまります。オプティマイザーを実行しない場合は、他のブラウザーとIEで動作します。
require(["jquery", "modals", "registermodule", "bootstrap", "personsmodule"], function($) {
//This is for placeholders in browsers that don't support it.
function createPlaceHoldersForIE(){
if (typeof document.createElement("input").placeholder == 'undefined') {
$('[placeholder]').focus(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(
function() {
var input = $(this);
if (input.val() === '' || input.val() === input.attr('placeholder')) {
input.addClass('placeholder');
input.val(input.attr('placeholder'));
}
}).blur().parents('form').submit(function() {
$(this).find('[placeholder]').each(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
}
});
});
}
}
// This will allow $(selector).val().trim(); syntax
String.prototype.trim = function() {
return $.trim(this);
};
$(document).ready(function() {
createPlaceHoldersForIE();
});
});