jquery-on

    0熱度

    2回答

    有沒有什麼辦法可以使用jQuery來委託一個事件,它將對應於頁面上與選擇器匹配的所有元素,而不是從$(document)中委託? 因爲這可能是措辭不當,這裏的難題是: 曾經有jQuery.live下放事件,以匹配選擇的所有元素。這被替換爲jQuery.delegate,它將特定上下文選擇器中的事件委託給它的子項,而後者又被jQuery.on取代,後者實際上做了同樣的事情,但在幕後有不同的位(我想象

    1熱度

    4回答

    我是有一個 $('.myElement').on('hover',function({...}); 問題試圖.on('hover',.hover(),這既沒有工作後,我試圖.live('hover',)。 .live('hover',)工作..但是,我使用jQuery 1.8.3所以這是爲什麼? 這是我與工作代碼: jQuery的 $('.myElement > a').live('hover

    2熱度

    5回答

    可能重複: jQuery 1.7 - Turning live() into on() .live() vs .on() method 我有以下代碼(我已經簡化爲這個),它工作得很好與jQuery-1.7一起。 $("td.ui-datepicker-week-col a").live("click", function() { alert("hello"); }); 我想升級我的

    1熱度

    1回答

    $("#img-switcher").on("switchImageEvent", function(event, triggerID){ $(this).attr('src',triggerID); }); $("#page-container").on("click", "img.img-switcher", function() { var newSRC = $(th

    5熱度

    4回答

    (「變」) 所以我有具有以下結構 <div class="editCampaignBanner"> <div> <hr> <label for="file">Upload a new image</label> <input id="file" type="file" name="file" class="valid"> <label for="N

    0熱度

    2回答

    JS: $(document).ready(function(){ $("#loader").load("external.html"); $("#buttonClickText").live('click', function() { $("#buttonClickText").text("Text changed after button click.");

    2熱度

    3回答

    我知道.live已折舊,最近我正在更新一個頁面並意識到我正在使用.live我想切換到.on但不明白要更改什麼。這是我目前的代碼: //Script for Choosing which form to display $("#email-button, #text-button").live('click', function(){ //figure out what button

    1熱度

    1回答

    已經閱讀了它,並因爲使用live而不是on而被「告知」幾次,所以我將所有的代碼移動到on ......並且有很多麻煩! ! 大部分我已經克服,但今天我有一個很奇怪的問題。 我在郵件標題中顯示,但單擊標題時,內容是動態加載的提問/回答布告欄的東西,HTML是 <div class="headerRow" id="header_<%# Eval("headerId")%>"> <span c

    1熱度

    1回答

    我正在閱讀documentation of the .on event handler of jQuery,我開始玩它。 我有一個簡單的<選擇>元素與多屬性設置爲true。 但是,我希望用戶能夠選擇多個項目而無需按Ctrl或Shift鍵 根據.on文檔,如果指定選擇器,它將自動將這些事件處理程序添加到在容器內添加的與指定選擇器匹配的新項目。在我的情況 所以,我可以例如決定更換<選項列表框中提供>元

    0熱度

    4回答

    我已動態生成div標籤看起來像這樣的效果: <div class="widget widget_1"> <div class="widget_header widget_header_1"></div> <div class="widget_sub_header widget_sub_header_1"></div> <div class="widget_conten