Jump to content
  • 0

запись в jq


cyklop77
 Share

Question

разбирал код слайдера и не смог понять что делает такая запись


var $controlContainer = $('<ul class="bjqs-controls"></ul>'),
$next = $('<li><a href="#" class="bjqs-next" class="controls">' + settings.nextText + '</a></li>'),
$previous = $('<li><a href="#" class="bjqs-prev" class="controls">' + settings.prevText + '</a></li>');

// Bind click events to the controllers
$next.click(function (e) {
e.preventDefault();
if (!animating) {
bjqsGo(forward, false);
}
});

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

я понимаю что происходит в общих чертах. но интересно все таки знать точно что происходит во второй строке. объясните пожалуйста подробно

Edited by cyklop77
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

спасибо. меня с толку сбивает то, что непонятно как встраиваются эти элементы в dom. куда конкретно

здесь видно только то, что элемент li создан и привязан к событию. в каком конкретно месте документа он окажется непонятно

Link to comment
Share on other sites

  • 0

спасибо. меня с толку сбивает то, что непонятно как встраиваются эти элементы в dom. куда конкретно

здесь видно только то, что элемент li создан и привязан к событию. в каком конкретно месте документа он окажется непонятно

Смотри ниже по коду - 109 строка


// Put 'em all together and what do you get? Ding dong. Hotdog
$next.appendTo($controlContainer);
$previous.appendTo($controlContainer);
$controlContainer.appendTo($container);

  • Like 1
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