Ok。
html:
<div class="selector">
<select name="something"> //this is what myVar is referring to.
<option>stuff</option>
</select>
</div>
var があるとします:
var myVar = $(".selector").find("[name=something]");
そして、option:selected: と連結したい:
$(myVar here + " option:selected").change(function(){
//do something
});
私はこれを機能させることができないようです。助けてくれる人に感謝します。