运行结果尺寸: 300 x 150
x
 
<!DOCTYPE html>
<html>
<body>
<p>显示""的布尔值:</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = "";
  document.getElementById("demo").innerHTML = Boolean(x);
}
</script>
</body>
</html>
×

报个问题: