2016-03-21 16 views
-4

私はhtmlファイルを開くと奇妙な出力が表示されます。奇妙なHTML出力

フレーズ-o_Matic氏は述べています:

それがすべてについて何? そこに私にエラーを教えてくれるJSのためのIDEはありませんか?

私はテキストエディタとしてAtomを使用しています。

コード -

<!doctype html> 
<html lang="en"> 
<head> 
    <title>Phrase-o-matic</title> 
<meta charset="utf-8"> 
<style> 
body { 
    font-family: Verdana , Helvetica ,sans-serif; 
} 
</style> 
<script> 
function makePhrases() { 
    var words1 = ["24/7" , "multi_Tier" , "30,000 foot","B-to-B","win-win"]; 
    var words2 = ["xyz","abcd","batch","retired","morning"]; 
    var words3 = ["super","shot","shake","Sunny"]; 

    var rand1 = Math.floor(Math.random() * words1.length); 
    var rand2 = Math.floor(math.random() * words2.length); 
    var rand3 = Math.floor(Math.random() * words3.length); 

    var phrase = words1[rand1] + " " + words2[rand2] + " " +words3[rand3]; 
    var phraseElement = document.getElementById("phrase"); 
    phraseElement.innerHTML = phrase; 
} 
window.onload = makePhrases; 
</script> 
</head> 
<body> 
    <h1>Phrase-o_Matic says;</h1> 
    <p id="phrase"></p> 
</body> 
</html> 


} 
+1

BAD質問タイトル。 – mmuzahid

+1

また、悪い質問体もあります。 –

+1

[よくある質問のしくみ](http://stackoverflow.com/help/how-to-ask)を読んで、それに応じて質問を編集してください。 – jfriend00

答えて

1

つミス:

1) '}' 末端で閉じ "HTML" タグ

2) "VaRのrand2 = Math.floor(数学後.random()* words2.length); "、mはMath.random()のように大文字でなければなりません。

以下のコードが動作します。

<!doctype html> 
<html lang="en"> 
<head> 
    <title>Phrase-o-matic</title> 
<meta charset="utf-8"> 
<style> 
body { 
    font-family: Verdana , Helvetica ,sans-serif; 
} 
</style> 
<script> 
function makePhrases() { 
    var words1 = ["24/7" , "multi_Tier" , "30,000 foot","B-to-B","win-win"]; 
    var words2 = ["xyz","abcd","batch","retired","morning"]; 
    var words3 = ["super","shot","shake","Sunny"]; 

    var rand1 = Math.floor(Math.random() * words1.length); 
    var rand2 = Math.floor(Math.random() * words2.length); 
    var rand3 = Math.floor(Math.random() * words3.length); 

    var phrase = words1[rand1] + " " + words2[rand2] + " " +words3[rand3]; 
    var phraseElement = document.getElementById("phrase"); 
    phraseElement.innerHTML = phrase; 
} 
window.onload = makePhrases; 
</script> 
</head> 
<body> 
    <h1>Phrase-o_Matic says;</h1> 
    <p id="phrase"></p> 
</body> 
</html> 
0

あなたはrand2ためMathで小文字の 'M' がvar rand2 = Math.floor(math.random() * words2.length);代わりのvar rand2 = Math.floor(Math.random() * words2.length);

0

を書きます。これは大文字でなければなりません。