本帖最后由 蔡嘉 于 2013-1-31 20:00 编辑
在vs2012里新建html页,运行时,不停出现undefined!?
<!DOCTYPE html>(有没有可能和这行有关系呢?)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>走马灯的程序</title>
<script type="text/javascript">
function scroll() {
var title = document.title;
var firstchar = title.charAt[0];
var leftstr = title.substring(1,title.length);
document.title = leftstr + firstchar;
}
setInterval("scroll()", 1500);
</script>
</head>
<body>
</body>
</html>
title.charAt(0){:soso_e140:}
|