文件包含代码javascript script.js
function style(id){
document.getElementById(id).style.backgroundColor="orange";
}
var setlist = "sets.txt";
function loadXMLDoc(open){
var xmlhttp;
if (window.XMLHttpRequest){// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}else{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("p1").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET",open,true);
xmlhttp.send();
}
页面中的代码,但没有工作。
<html>
<head>
<script type="text/javascript" src="script.js">
if ((onclick="loadXMLDoc(setlist)" == true)){
style("s");
}
</script>
</head>
<body>...
<dl>
<dt class="pro"><a onclick="loadXMLDoc(setlist)" id="s">Sets</a></dt>
</dl>
</body>
</html>
这个想法很简单,当条件是真实的时候id ='s'它用橙色标记文本'sets',但不是像(as)那样使它工作,你判断它是不是很好?
答案 0 :(得分:0)
也许是因为你的脚本标签中既有src属性又有内容?