selector

    3熱度

    2回答

    我要選擇具有類元素的所有後代元素=「X」是這樣的: <!DOCTYPE html> <html> <head> <style type="text/css"> .x * { color: red; } </style> </head> <body> a <p> b <p class="x">

    5熱度

    2回答

    我想傳遞一個的CGRect: SEL frameSel = NSSelectorFromString(@"setFrame:"); CGRect rect = CGRectMake(10, 10, 200, 100); [object performSelector:frameSel withObject:rect ]; 但是,這並不編譯 我也試過: SEL frameSel = NSSe

    2熱度

    7回答

    我正在處理我的第一個真正的iPhone應用程序,一個簡單的待辦事項列表應用程序來幫助我組織東西,除了我得到一個「無法識別的選擇器發送到實例0x「。 具體做法是: 2010-02-20 14:30:09.200 ToDoApp[88562:20b] *** -[NSCFDictionary switchViews:]: unrecognized selector sent to instance 0

    3熱度

    3回答

    的jQuery 1.4: $('#menu li:last:not(.ignore)').addClass('last'); HTML: <div id="menu"> <ul> <li>item 1</li> <li>item 2</li> <li class="ignore">item3</li> </ul> </div> ..

    0熱度

    1回答

    我有一個自定義item_row.xml的列表視圖。我這樣定義一個選擇: <?xml version="1.0" encoding="utf-8"?> <item android:state_pressed="false" android:drawable="@drawable/list_bg" > </item> <item android:state_pre

    1熱度

    3回答

    我想任何元素,但一個是關於一個事件執行函數: $(":not('#myelement')").bind('mousedown', function() { console.log('mousedown event'); }); 但是當我點擊#myelement,反正是執行函數,因爲選擇器中選擇所有的家長。此外,該功能針對每個父母執行。 如何我: -execute功能只有一次? -

    2熱度

    2回答

    我需要得到第一個複選框的價值檢查和誰的類名以'rqc'開頭,例如。 rqc205 我已經試過這樣:requestID=$('#requestsTable').find('input[class^='rqc']:checked').val(); ,但它產生什麼,而requestID=$('#requestsTable').find('input:checked').val();的作品,但不限制於類。

    4熱度

    1回答

    我正在使用.eq()方法來選擇已知元素的特定子元素。 IE和Chrome/FF中的元素索引看起來不同,因爲.eq(2)根據瀏覽器返回不同的值。 (我在尋找顯示爲.EQ(2)在FF /鉻,但.EQ(3)在IE元素) 例如, alert($(this).parent().children().eq(2).text()); 示出了不同的結果取決於瀏覽器。 這裏是有問題的標記: <div>

    0熱度

    1回答

    我寫了一些按鈕操作的代碼。首先,我創建一個按鈕"UI",其onAction應撥打電話ButtonListener@selector,addTarget。但它似乎並沒有進入@selector(UIButtonListener)方法。 這裏是我的代碼: UIButton_G_obj = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain]

    0熱度

    1回答

    嘿傢伙。所以我在loadView中動態地創建按鈕。每個按鈕都使用@Selector方法進行操作,例如: [button addTarget:self action:@selector(showCCView)forControlEvents:UIControlEventTouchUpInside]; 既然showCCView方法是在loadView的上面定義的,那麼就是上述語句的位置。該方法的要點是