これが私のコードです:
alert("First");
if (!Modernizr.inputtypes.color) {
alert("This form is optimized for a browser that supports html5. Using anything else may produce unexpected results. Use at your own risk.\n\nThis bowser doesn't appear to support html5.");
} else {
alert("Second");
}
alert("Third");
これは、ページが最初にロードされたときに実行されます。最初のアラートステートメントは正しく機能します。2番目と3番目のものはまったく実行されません。Chrome、Firefox、Internet Explorerで試しましたが、すべて同じ結果になりました。たぶんModernizrは何かを台無しにしていますか?わかりません。コードをコピーして貼り付けただけです。私はおそらく明白な間違いを犯したでしょう。(以前にやったことがあります)よろしくお願いします。