Страницы: 1
имею ввиду нужен сам код реализации этого!
09-09-2013 14:20:45
[code]
2112 function BrowserViewSourceOfDocument(aDocument)
2113 {
2114 var pageCookie;
2115 var webNav;
2116
2117 // Get the document charset
2118 var docCharset = "charset=" + aDocument.characterSet;
2119
2120 // Get the nsIWebNavigation associated with the document
2121 try {
2122 var win;
2123 var ifRequestor;
2124
2125 // Get the DOMWindow for the requested document. If the DOMWindow
2126 // cannot be found, then just use the content window...
2127 //
2128 // XXX: This is a bit of a hack...
2129 win = aDocument.defaultView;
2130 if (win == window) {
2131 win = content;
2132 }
2133 ifRequestor = win.QueryInterface(Components.interfaces.nsIInterfaceRequestor);
2134
2135 webNav = ifRequestor.getInterface(nsIWebNavigation);
2136 } catch(err) {
2137 // If nsIWebNavigation cannot be found, just get the one for the whole
2138
Привет всем, даже не знаю сюда ли обратился.....В общем нужен код который выполняется с момента нажатия в браузере CTRL+U. Где мне его взять? Если у кого есть напишите пожалуйста! Думаю я что там не так уж и много написано ).
09-09-2013 13:27:46
Ну или просто подскажите как выудить исходный код страницы, как это делается?
Страницы: 1