Javascript在Chrome中运行,但不是IE11

时间:2016-06-09 19:36:02

标签: javascript wordpress

在IE中使用以下代码:

<script src="/DesktopModules/regentsigns-app/systemjs.config.js"></script>

使用Chrome浏览器,Firefox但不是IE11。 IE中的控制台说“'billing_phone'未定义”,但是明确定义了billing_phone。上载问题?我在Wordpress中使用它,所以应该考虑到这一点。

1 个答案:

答案 0 :(得分:1)

您应该正确引用该元素。

可以是id="billing_phone"

document.getElementById("billing_phone").value="";

name="billing_phone"

document.formName.billing_phone="";

document.getElementById("formId").billing_phone.value="";