Мне было интересно, можем ли мы добавить данные в функцию, которая уже определена в Javascript.
var win;
window.onload= function()
{
win = window.onbeforeunload;
win = win.toString();
var firstLetter = win.indexOf('{');
win = win.substring(firstLetter + 1, win.length - 1);
//Getting the data of the function [firstLetter = first occurrence of { ]
win = win + 'alert("More Unload");';
`/* Here, I want to rebind var win to the window.onbeforeunload event*/`
}
window.onbeforeunload = function ()
{
alert("Unload function");
alert("More Unload");
}
Возможно ли это?
Спасибо.