How to get indexedDB to work in IE11?
问题 I want to use indexedDB in my IE11, but it seems to be undefined. This is the code: <!DOCTYPE html> <html> <head> <title>Title of the document</title> <script> window.indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction || window.msIDBTransaction; window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || window.msIDBKeyRange if (IDBTransaction) { window