我正在尝试使用
更改在我的html页面的head部分中声明的脚本标记的内容document.getElementById("a").innerHTML="document.write('abc')";
可以这样做吗? 因为我没有看到任何结果
我的代码:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script id="a2" >
</script>
</head>
<body>
hello !
<script type="text/javascript">
var result;
$.ajax( {
type:'Get',
url:'http://172.27.140.52/cgi-bin/lockdownsubscribe.cgi',
success:function(data) {
if(data=='Locked')
{
document.getElementById("a2").innerHTML="document.write('a1 change')";
//document.write("hello world");
}
// alert(data);
//document.write(data);
//result = data;
}
})
//document.write(data);
//document.write(result);
</script>
<p id="a1">
change
</p>
</body>
</html>
〜 〜