我对编码很陌生,一个月前我开始参加编程课程,最近我们分配了第一个项目。我想把我的javascript代码放到我的index.html中。到目前为止,我在我的html页面中有这个:
<script src="/project1/prices.js" type='Javascript/text></script>`
我的javascript页面目前有这个:
var price1Name = "Tickets for 18 and under";
var price2Name = "Tickets for 18 and over";
var price3Name = "T-shirt (all sizes)";
var price4Name = "Jackets (all sizes)";
var price1price = "$5.00";
var price2price = "$10.00";
var price3price = "$15.00";
var price4price = "$20.00";
document.write(price1Name);
document.write(price1price);
document.write(price2Name);
document.write(price2price);
document.write(price3Name);
document.write(price3price);
document.write(price4Name);
document.write(price4price);
我想要做的就是将此代码输入我的Html页面,以便我能够显示项目及其价格。我似乎无法弄清楚我做错了什么。谢谢你的时间,一切都有帮助!
答案 0 :(得分:2)
您的script
标记看起来有几个错误
<script src="/project1/prices.js" type="text/javascript"></script>
答案 1 :(得分:0)
<!DOCTYPE html>
<html>
<head>
<title>JavaScript</title>
</head>
<body>
<script>
//code
</script>
</body>
</html>
您可以将JavaScript代码粘贴在 身体。这将允许您将JavaScript代码插入HTML 页面。