2009-12-04 45 views

回答

3

該方法一旦ajax被加載並附加到DOM。 你可以把它改寫了一下:

jQuery.existsin = function (what, where) { 
    return jQuery(where).find(what).length > 0; 
} 

的你可以在阿賈克斯成功:

function(data, status){ 
    if(jQuery.existsin('selector', data)){ 
    //do foo 
    } 
} 
+2

會是明智的指定「體」作爲「默認哪裏? – 2009-12-04 13:13:24

+0

謝謝!這對我行得通! – 2009-12-04 13:41:08

+0

@Eivind請讓我知道這裏的選擇。 – Achyut 2014-08-20 09:28:57

相關問題