IE11でテンプレートリテラルは使えない
3537 ワード
例
index.html
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>JavaScriptドリル</title>
</head>
<body>
<script src="script.js"> </script>
</body>
</html>
script.js
//キーイベント
document.addEventListener('keydown',function(event){
var keyName = event.key;
if(event.ctrlKey){
console.log(`keydown:${keyName}`);
} else if (event.shiftKey) {
console.log(`keydown:${keyName}`);
} else {
console.log(`keydown:${keyName}`);
}
});
ie
Chrome
index.html
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>JavaScriptドリル</title>
</head>
<body>
<script src="script.js"> </script>
</body>
</html>
script.js
//キーイベント
document.addEventListener('keydown',function(event){
var keyName = event.key;
if(event.ctrlKey){
console.log(`keydown:${keyName}`);
} else if (event.shiftKey) {
console.log(`keydown:${keyName}`);
} else {
console.log(`keydown:${keyName}`);
}
});
ie
IE
Author And Source
この問題について(IE11でテンプレートリテラルは使えない), 我々は、より多くの情報をここで見つけました https://qiita.com/TakuyaWatanabe/items/1b83b8eb7142c5367bc3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .