1

なぜこれが機能しないのですか?

<div id="download">
        <button>Download</button>
</div>

$("#download").find( ":button" ).click(function () {
    alert("io");
});

ボタン要素にクラスとIDを追加してみました。私も試しました

<button>Download</button>

$(':button').click(function(){
    alert("io");
}
4

1 に答える 1

2

:button一致のみ<input type="button"...

だから試してください:

$(function(){ //And i would wrap it in DOM ready wrapper if the script is loaded earlier than the element in DOM.
    $("#download").find("button").click(function () {
        alert("io");
    });
});
于 2013-10-15T18:13:56.463 に答える