这小段代码出不了结果,咋回事
<html>
<div id="test">
<span style="color:red">文字一test1</span>文字二test2
</div>
<head>
<script type="text/javascript">
function $(id){document.getElementById(id);}
window.alert("test.innerHTML:"+$("test").innerHTML+"test.innerText:"+$("test").innerText);
</script>
</head>
</html>
------解决方案--------------------function $(id){
return document.getElementById(id);}
------解决方案--------------------你并没有返回找到的对象
function $(id){return document.getElementById(id);}
------解决方案--------------------function $(id) {
return document.getElementById(id);}
------解决方案--------------------包含文件的路径错了吧,html里面写的是./头像.jpg吗
------解决方案--------------------这样的问题还是面谈比较好