Skip to main content

Posts

Showing posts from November 2, 2021

Sự Kiện - Javascript

Untitled Document Đoạn 1 Nhập giá trị: ________________ <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> <script type="text/javascript"> function laynd() { tam=document.getElementById("p1").innerHTML; alert(tam); document.getElementById("p1").innerHTML="Nội dung đã thay đổi!"; } function laygt() { tam=document.form1.test1.value; alert("Giá trị của ô test1 là:"+tam); document.form1.thuchien.value=" Action "; } </script> </head> <body> <p id="p1" onClick="laynd();">Đoạn 1</p> <hr/> <form id="form1" name="form1" method="post">   <label for="test1">Nhập giá trị:</label>       <input type="text" name="test1" id="test1...