将字符串值放入javascript的<p>标记中

时间:2017-02-24 19:11:38

标签: javascript

我有一个三卡吹嘘游戏的程序,它基本上随机选择一张卡使用随机函数从两个数组中选择一张卡片之后我已经使用了一系列if语句决定玩家的手牌是什么。

我希望能够从javascript中的if语句中获取一段文本到HTML中的段落。

这是我的一个if语句的例子,它决定了其中一只手。

if(crand >= crand1 && crand >= crand2 || 
   crand1 >= crand && crand1 >= crand2 || 
   crand2 >= crand && crand2 >= crand1) {
         document.getElementById("P1").innerHTML='Player has high card';
}

这就是我在我的HTML主体中我想要的信息

<p id='P1'></p>

1 个答案:

答案 0 :(得分:1)

确保代码在<body>元素关闭(</body)之前的文档中,以便在代码执行时找到该元素。

<body>

  <p id="P1"></p>

  <script>

    // By placing your script after all the HTML elements, you 
    // ensure that they are loaded into memory by the time the
    // script runs.
    var p1 = document.getElementById("P1");

    var x = 10;

    if(x === 10){
      p1.textContent = "Hello!";
    }

  </script>
</body>