为什么我的代码不能用于chrome?它适用于Internet Explorer

时间:2016-02-02 01:57:34

标签: html google-chrome

我很久以前写过这篇文章。我几乎不懂html,这是一个噩梦,但它有效。这只是让我更容易访问我的模拟器的方式,但它只适用于Internet Explorer。它不会在chrome中工作但它确实会出现。



val sysProperties = System.getProperties
val allConfig = ConfigFactory.load("perks.conf")
val appConfig = allConfig.entrySet().filter { entry =>
  !sysProperties.containsKey(entry.getKey)
}




1 个答案:

答案 0 :(得分:2)

您正在使用ActiveX对象。这些不是JavaScript,它们仅在Internet Explorer上可用。无法在任何其他浏览器上执行使用ActiveX控件的代码。