Script Function
Rajeev Ranjan Tiwari
आज हम जानेंगे script के बारे में दोस्तों आज के युग में
कोइ भी गेम एनीमशन इफैक बनाने के लिए script का पूरा नोलेज होना चाहिए तभी आप एक developer बन सकते हैं
तो आज हम इसी के बारे में जानेंगे
(1)
<html>
<body>
Select some of the text: <input type="text" value="Hello world!" onselect="myFunction()">
<script>
function myFunction() {
alert("You selected some text!");
}
</script>
</body>
</html>
<html>
<body>
<input type="text" value="Hello world!" onselect="myFunction()">
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "You selected some text!";
}
</script>
</body>
</html>
(3)
<html>
<body>
<input type="button" value="Click me..." onclick="alert('Thanks, I feel better now!');">
</body>
</html>
(4)
<html>
<body>
<button onclick="myFunction()">Click me</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Hello World";
}
</script>
</body>
</html>
Comments
Post a Comment