在Adobe Brackets中打开HTML文件

时间:2014-12-23 19:56:58

标签: adobe-brackets

我是一位非常缺乏经验的程序员。我一直在做codeacademy javascript轨道,但我发现你需要将javascript放在HTML文件中?我想确保在继续代码学院之前我可以编写基本的javascript,所以我下载了括号,当我尝试使用实时预览功能测试我的程序时,它说,"打开一个HTML文件或确保有一个项目中的index.html文件,以启动实时预览。我很快输入了这个,所以可能有很多错误,但如果这有助于回答我的问题,那么这里是代码。

<!DOCTYPE html>
<html>
<body>

<h1> Daily Programmer Challenge 12/15/14 </h1>

<script type = "text/javascript">

var volume = prompt ("Enter the volume of the container that you wish to make");

var cube = math.pow(volume, 1/3);

window.document.write("The size of the container is '+cube+' width, '+cube+' high, and '+cube+' tall");

</script>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

将您粘贴的代码保存为名为index.html的文件,然后尝试使用Bracket的实时预览。

答案 1 :(得分:0)

对于每个人,可以通过以下步骤解决此问题:-

  1. 在菜单栏上,依次转到“文件->打开文件夹”(包含用于实时预览的html文件的文件夹)

  2. 选择文件夹

  3. 从左侧栏中选择您的html文件进行实时预览

  4. 单击右侧的螺栓图标(预览按钮)

所有这些都融合为一个事实,您需要选择该文件夹(其中有您的文件)以在实时预览中查看输出。 让我知道,是否可以帮助某人。 :)

BeforeLeaveObserver vs. beforeunload enter image description here enter image description here enter image description here