gpt4 book ai didi

javascript - JavaScript 中的函数重写

转载 作者:行者123 更新时间:2023-12-03 03:24:13 24 4
gpt4 key购买 nike

如何在 JavaScript 中进行函数重写?

我有以下代码。

function helloWorld () {
return 'helloworld ';
}

var origHelloWorld = window.helloWorld;

window.helloWorld = function() {
return 'helloworld2';
}

alert(helloWorld);

我想得到像这样的输出

helloworld helloworld2

我应该做什么?

可能我描述得比较少。实际上我想调用函数 helloworld 并且我想联合获取两个函数的输出。

最佳答案

试试这个:

function helloWorld () {
return 'helloworld ';
}

var origHelloWorld = window.helloWorld;

window.helloWorld = function() {
return origHelloWorld() + ' ' +'helloworld2';
}

alert( helloWorld() );

关于javascript - JavaScript 中的函数重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46421792/

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