1

私はこのjQueryコードを持っています:

$('#uploadedFiles') // jQuery
.find("input[value='"+searchedValue+"']").each(function(){
    window.alert($(this).attr("id"));
});

これは Mootools にどのように変換されますか?

4

1 に答える 1

5

uploadedFilesそれがコンテナの ID であると仮定します。

$("uploadedFiles") // MooTools
    .getElements("input[value='" + searchedValue + "']")
    .each(function(el) {
        window.alert(el.id);
    });

デモ: http://jsfiddle.net/e4Hbt/

于 2012-11-14T12:41:09.513 に答える