JavaScript函数混叠似乎不起作用
>>> window.myAlias = document.getElementByIdfunction()>>> myAlias('item1')>>> window.myAlias('item1') >>> document.getElementById('item1')<div id="item1">
uncaught exception: [Exception... "Illegal operation on WrappedNative prototype object" nsresult: "0x8057000c (NS_ERROR_XPC_BAD_OP_ON_WN_PROTO)" location: "JS frame :: file:///[...snip...]/test.html :: <TOP_LEVEL> :: line 7" data: no]
>>> window.myAlias = document.getElementByIdfunction getElementById() { [native code] }>>> window.myAlias('item1') TypeError: Illegal invocation>>> document.getElementById('item1')<div id=?"item1">?
慕婉清6462132
喵喵时光机