Jump to content
  • 0

Как узнать имя объекта по которому кликнули? Событие click() jQuery


Bloomerwd
 Share

Question

Здравствуйте ув. пользователи данного форума.

У меня возник вопрос..

Какими средствами узнать имя объекта на который кликнул пользователь?

Заранее благодарю.

Link to comment
Share on other sites

Recommended Posts

  • 0

Лучше всего при открытии меню биндить на документ на клик проверку куда кликнули, и если кликнули за пределами меню, то спрятать меню и убрать обработчик клика с документа который отвечает за проверку куда кликнули.

типа того: 

function showMenu() {	menu.show();	$(document).on('click', outsideClick);}function hideMenu() {	menu.hide();	$(document).off('click', outsideClick);}function outsideClick(e) {	var target = $(e.target)	if (!target.is(menu) || !$(e.target).closest(menu).length) {		hideMenu();	}}
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