Javascript Code
<script type="text/javascript">
function al(){
var hello_text="Welcome to Ninenik.com";
hello_text=hello_text.toLowerCase(); // ฟังก์ชันสำหรับแสดงตัวเล็ก
alert(hello_text);
}
function al2(){
var hello_text="Welcome to Ninenik.com";
hello_text=hello_text.toUpperCase(); // ฟังก์ชันสำหรับแสดงตัวใหญ่
alert(hello_text);
}
</script>
HTML code การใช้งาน
<button onclick="al()">แสดงตัวเล็ก</button> <button onclick="al2()">แสดงตัวใหญ่</button>
ตัวอย่าง