document.title = 123;
document.body.innerHTML = '123';
var aBtn = document.getElementsByTagName('input');
document.body.innerHTML = '<input type="button"><input type="button"><input type="button">';
alert(aBtn); // 会弹出3
var aBtn = document.getElementById('btn');
document.body.innerHTML = '<input id="btn" type="button">';
alert(aBtn); // 会弹出null