Latest web development tutorials

VBScript ตุลาคมฟังก์ชั่น

VBScript อ้างอิง อ้างอิง VBScript สมบูรณ์

ฟังก์ชั่นตุลาคมส่งกลับสตริงที่แสดงค่าฐานแปดของจำนวนที่ระบุ

หมายเหตุ: หากพารามิเตอร์ไม่ใช่จำนวนเต็มทำให้ปัดเศษเลขที่ใกล้ที่สุดก่อนที่จะดำเนินการ

ไวยากรณ์

Oct(number)

参数 描述
number 必需。任何有效的表达式。

如果数字是:

  • Null - 那么 Oct 函数返回 Null。
  • Empty - 那么 Oct 函数返回零(0)。
  • Any other number - 那么 Oct 函数返回 11 个八进制字符。

ตัวอย่าง

ตัวอย่าง

<script type="text/vbscript">

document.write(Oct(3) & "<br />")
document.write(Oct(5) & "<br />")
document.write(Oct(9) & "<br />")
document.write(Oct(10) & "<br />")
document.write(Oct(11) & "<br />")
document.write(Oct(12) & "<br />")
document.write(Oct(400) & "<br />")
document.write(Oct(459) & "<br />")
document.write(Oct(460) & "<br />")

</script>

ตัวอย่างของการส่งออกดังกล่าวข้างต้น:

3
5
11
12
13
14
620
713
714

ลอง»

VBScript อ้างอิง อ้างอิง VBScript สมบูรณ์