用JavaScript写一个逻辑运算符代码
时间: 2024-01-26 07:04:10 浏览: 69
以下是一个简单的逻辑运算符代码的例子,使用 JavaScript 实现:
```html
<!DOCTYPE html>
<html>
<head>
<title>逻辑运算符</title>
</head>
<body>
<form>
<label for="num1">第一个数字:</label>
<input type="text" id="num1"><br><br>
<label for="num2">第二个数字:</label>
<input type="text" id="num2"><br><br>
<label>逻辑运算符:</label>
<select id="operator">
<option value="and">AND(&&)</option>
<option value="or">OR(||)</option>
<option value="not">NOT(!)</option>
</select><br><br>
<input type="button" value="计算" onclick="calculate()"><br><br>
<label for="result">结果:</label>
<input type="text" id="result" readonly>
</form>
<script>
function calculate() {
var num1 = parseFloat(document.getElementById("num1").value);
var num2 = parseFloat(document.getElementById("num2").value);
var operator = document.getElementById("operator").value;
var result;
if (operator == "and") {
result = num1 && num2;
} else if (operator == "or") {
result = num1 || num2;
} else if (operator == "not") {
result = !num1;
}
document.getElementById("result").value = result;
}
</script>
</body>
</html>
```
此代码将提示用户输入两个数字和一个逻辑运算符,并计算出结果。用户可以选择使用 AND(&&)、OR(||) 或 NOT(!) 运算符。
阅读全文