gpt4 book ai didi

javascript - JS 中 getElementById 的替代选项?

转载 作者:行者123 更新时间:2023-12-02 18:43:34 24 4
gpt4 key购买 nike

我有一个 MVC 应用程序。

我在下面的“创建” View 中编写了 JS 代码。下面的代码在 Google chrome 和 Mozilla Firefox 中完美运行;但它在 IE 8 中不起作用。

$('#PaymentType').change(function(){            
var ptype=document.getElementById("PaymentType").value;
});

所以我将其更改为下面的代码并且它也可以在 IE 8 上运行

$('#PaymentType').change(function(){            
var ptype = $(this).val();
});

现在,问题是我不再使用 getElementById...

如果我想从另一个控件获取值怎么办? getElementById 可以使用哪个替代选项?

最佳答案

您只需使用 $('#otherId').val() 即可获取值。

另外,在第二个代码示例中,您可以只使用 var ptype = this.value;

关于javascript - JS 中 getElementById 的替代选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16634417/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com