addEventListener metodu
Şöyle yaparız.
alert Popup kutusunda sadece "OK" düğmesi bulunur.
Örnek ver
confirm metodu
confirm Popup kutusunda hem "OK" hem de "Cancel" düğmeleri bulunur.
Örnek
Şöyle yaparız.
Örnek
Şöyle yaparız.
Şöyle yaparız.
Eskiden şöyle yapardık
Bu metod yerine şöyle yapabiliriz.
Şöyle yaparız.
Yeni bir pencere açmak için şöyle yaparız.
string tipindendir. Açıklaması şöyle.
Şöyle yaparız.
window.addEventListener("load", startup);
function startup() {
document.getElementById("fnamelistbtn").addEventListener("click", test);
}
Aynı şeyi JQuery ile şöyle yaparız.$(document).ready(function() {
...
});
alert metodualert Popup kutusunda sadece "OK" düğmesi bulunur.
Örnek ver
confirm metodu
confirm Popup kutusunda hem "OK" hem de "Cancel" düğmeleri bulunur.
Örnek
Şöyle yaparız.
confirm("You Entered ...");
innerwidth AlanıÖrnek
Şöyle yaparız.
jQuery(document).ready(function($) {
const viewportWidth = window.innerWidth;
if (viewportWidth < 640) {
...
}
});
JQuery ile şöyle yaparız.if ( $(window).width() > 739)
{
//Add your javascript for large screens here
}
else
{
//Add your javascript for small screens here
}
localStorage metoduŞöyle yaparız.
var response = window.localStorage.getItem('response');
// Clear storage
window.localStorage.clear();
onbeforeunload metoduEskiden şöyle yapardık
<script>
window.onbeforeunload = modal;
function modal() {
return 'leaving';
}
</script>
Açıklaması şöyleIn modern browsers, any action want to stop closing window is impossible.onload metodu
some actions such as window.showModalDialog(), window.alert(), window.confirm(),window.prompt() are ignored in onunload or onbeforeunload event.
And, if u can do these actions, means you can make the browser can't be closed. it's dangerous for users
Bu metod yerine şöyle yapabiliriz.
<body onload="startTimer()">
ÖrnekŞöyle yaparız.
window.onload = () => {...});
open metoduYeni bir pencere açmak için şöyle yaparız.
var minimal = '<!DOCTYPE HTML>\n' +
'<html>\n' +
'<head>\n' +
'<meta charset="utf-8">\n' +
'<title>Title Here</title>\n' +
'</head>\n' +
'<body>\n' +
'</body>\n' +
'</html>\n';
var win = window.open();
var doc = win.document;
doc.open('text/html', true);
doc.write(minimal);
doc.close();
status Alanıstring tipindendir. Açıklaması şöyle.
If you console.log(typeof status) you'll see it's a string. Why? The answer is that status is a special variable, window.status, which no longer has any effect on the window status bar but is nonetheless converted back to a string (presumably for display) when assigned a value.Açıklaması şöyle.
For historical reasons, the status attribute on the Window object must, on getting, return the last string it was set to, and on setting, must set itself to the new value. When the Window object is created, the attribute must be set to the empty string. It does not do anything else.
Hiç yorum yok:
Yorum Gönder