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">?
白衣非少年
天涯尽头无女友
相关分类