我正在查看其他人的代码,他们会在值更改时更新某些值。实际代码如下所示。有任何理由这样做吗?如果是这样,它在做什么?
$("#inputID").on("change", function () {
parent.document.getElementById("inputID").value= this.value;
});
我正在查看其他人的代码,他们会在值更改时更新某些值。实际代码如下所示。有任何理由这样做吗?如果是这样,它在做什么?
$("#inputID").on("change", function () {
parent.document.getElementById("inputID").value= this.value;
});