我有以下代码将函数附加到DOMContentLoaded事件,但从未在Internet Explorer 11中调用该函数
码:
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", init, false);
}
else {
document.attachEvent("onDOMContentLoaded", init);
}
Run Code Online (Sandbox Code Playgroud) 我试图在Playstore中更新我的应用程序,为此我将我的版本代码从1更改为2:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.xamaxon.congstardatenverbrauch"
android:versionCode="2"
android:versionName="1.0.1">
Run Code Online (Sandbox Code Playgroud)
当我上传应用程序时,developerconsole说,我仍然使用版本代码1,并且没有人支持德国开发人员,所以我希望有人能够帮助我.