gpt4 book ai didi

javascript - 如何拦截变量值

转载 作者:行者123 更新时间:2023-11-30 06:38:39 24 4
gpt4 key购买 nike

我正在尝试创建一个 chrome 扩展程序来计算某个网页上显示的某些数字的平均值。该网页使用此功能来显示它们:

function MakeBody(Property, dValue, Color){
document.write ("<tr>")
document.write ("<td width='16'> &nbsp;</td>");
document.write ("<td width='10'>&nbsp;</td>");
document.write ("<td><p class='NormalText'>&nbsp;&nbsp;<font color='"+Color+"'>"+Property+"</font></p></td>");
document.write ("<td><p class='NormalText'>&nbsp;&nbsp;<font color='"+Color+"'><b>"+dValue+"</font></b></p></td>");
document.write ("<td width='16'>&nbsp;</td>");
document.write ("</tr>");
}

我需要截取并计算其平均值的值来自“dValue”变量。这可能吗?

最佳答案

仅当您可以将 MakeBody 函数替换为执行操作的新函数,然后调用原始函数时:

   // cache the original
var __MakeBody__ = MakeBody;

// replace it with yours
MakeBody = function(Property, dValue, Color) {
// manipulate 'dValue' here

// invoke the original
return __MakeBody__.call(this, Property, dValue, Color);
};

关于javascript - 如何拦截变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13002120/

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