您可以直接从更改的对象中简单地查询当前值。// is element is an inputconst newValue = document.getElementByID('myElement').value;// or, if it is a any text elementconst newValue = document.getElementByID('myElement').innerHTML;此外,每个MutationRecord都有一个名为的属性target,其中包含有关更改对象的所有详细信息。因此,根据MutationRecord.type(它告诉我们发生了何种类型的更改),您可以从内部的相应属性中获取新值MutationRecord.target