Jump to content
  • 0

Повлиять на поведение браузера


Guest Гость_Anton_*
 Share

Question

Guest Гость_Anton_*

Здравствуйте.

Подскажите пожалуйста, можно ли как-то запретить браузеру прокручивать страницу поэкранно при нажатии клавиши пробел или PgUp и PgDown?

Это ломает разметку страницы, потому что на ней много абсолютно спозиционированных элементов с возможностью перетаскивания.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
Guest Гость_Anton_*

Помимо того, что это ломает разметку, это еще и нарушает логику работы со страницей.

Она просто не должна прокручиваться при нажатии клавиш в браузере.

Link to comment
Share on other sites

  • 0
Помимо того, что это ломает разметку, это еще и нарушает логику работы со страницей.

Она просто не должна прокручиваться при нажатии клавиш в браузере.

Вешай на документ обработку клавиш:

function PreventDefault(e) {
if (document.all){
e = window.event;
e.returnValue = false;
}
else if (null!=e) e.preventDefault();
}

function OnKeyDown(e) {
clearTimeout(this.timer);
e = e||event;
if(!e.target) e.target = e.srcElement;
(e.keyCode==32||e.keyCode==40||e.keyCode==35) PreventDefault(e);
}

Link to comment
Share on other sites

  • 0
function OnKeyDown(e) {

clearTimeout(this.timer);

e = e||event;

if(!e.target) e.target = e.srcElement;

(e.keyCode==32||e.keyCode==40||e.keyCode==35) PreventDefault(e);

}

cleatTimeout(this.timer); - chto eto delayet?

Гы, сотри его, забыл убрать (тут была большаааая функиця, убирал всё лишнее для тебя и забыл стереть) ;)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy