Function.prototype.toString = function () {
  return "I wish everyone happy !"
}

function saySth () {
  alert("55555");
}

alert(saySth.toString());

 

//I wish everyone happy !

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-08-11
  • 2022-12-23
  • 2021-09-06
  • 2021-10-15
  • 2021-12-18
猜你喜欢
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
  • 2019-03-03
  • 2021-06-29
  • 2021-09-03
  • 2021-04-29
相关资源
相似解决方案