我使用以下内容将一些内容加载到页面的html中
console.log('I hate seeing the next line stating the obvious.')
I hate seeing the next line stating the obvious.
undefined
log = function(l){return l}
function log()
if(1 === 2){console.log('1 is not equal to 2.')}else{log('No Shit Sherlock.')}
"No Shit Sherlock."
现在我想在新页面内容的主体上添加一些东西。我试过这个:
$('html').load('mypage.php');
但我不会在新页面上看到BLAHBLAHBLAH。
请帮忙吗?