ต้นแบบ - ช่วงการแสดงออก
Prototype Ranges แสดงถึงช่วงเวลาของค่า วิธีที่ต้องการในการรับช่วงคือการใช้$R ฟังก์ชันยูทิลิตี้
คุณสามารถสร้างค่าที่หลากหลายโดยใช้ไวยากรณ์ง่ายๆดังนี้ -
$R(1, 10).inspect();
$R('a', 'e').inspect();
สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้ -
['1, 2, 3, 4, 5, 6, 7, 8, 9, 10']
['a', 'b', 'c', 'd', 'e']
วิธีการรวม ()
วิธีนี้กำหนดว่าค่าจะรวมอยู่ในช่วงหรือไม่ -
ไวยากรณ์
Range.include(value);
ส่งคืนค่า
หากรวมค่าแล้วจะส่งกลับค่าจริงมิฉะนั้นจะเป็นเท็จ
ตัวอย่าง
<html>
<head>
<title>Prototype examples</title>
<script type = "text/javascript" src = "/javascript/prototype.js"></script>
<script>
function showResult() {
alert ( "Test 1 : " + $R(1, 10).include(5));
// Returns true
alert ( "Test 2 : " + $R('a', 'h').include('x'));
// Returns flase
}
</script>
</head>
<body>
<p>Click the button to see the result.</p>
<br />
<br />
<input type = "button" value = "Result" onclick = "showResult();"/>
</body>
</html>