小编Ana*_*ant的帖子

为什么我得到"错误C2006:'#include':期望一个文件名,找到'标识符'"?

我在Visual C++ Express 2008中的源代码如下:

#include “stdafx.h”
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << “Hello world!\n”;
return 0;
} 
Run Code Online (Sandbox Code Playgroud)

我正在使用Ivor Horton撰写的Visual C++ 2008一书

这些是我遇到的错误.如何摆脱错误?

1> e:\ my documents\visual studio 2008\projects\hello\hello\hello.cpp(1):错误C2006:'#include':预期文件名,找到'标识符'
1> e:\ my documents\visual studio 2008\projects\hello\hello\hello.cpp(1):致命错误C1083:无法打开包含文件:'':没有这样的文件或目录

谢谢!

c++ compiler-errors header include visual-c++

4
推荐指数
1
解决办法
1万
查看次数

jQuery animate()

我的代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
#Layer1 {
 position:absolute;
 width:200px;
 height:115px;
 z-index:1;
 left: 445px;
 top: 64px;
}
-->
</style>

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
function toggle()

{

$("#Layer1").animate({width:"20px"},1000);

}
</script>
</head>

<body onload="toggle()">
<div id="Layer1"><img src="friend-line.jpg" width="243" height="380" /></div>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

现在,当页面加载时,最初会有一个动画,但很快就会恢复第1层的尺寸.我想知道为什么会发生这种情况.谢谢!

jquery jquery-animate

4
推荐指数
1
解决办法
6062
查看次数