我有這個,所以當頁面加載得到的價值,如果爲真,以顯示一個味精工作,但當我用改變時,改變沒有,所以我用活的改變功能,當工作你改變了,但現在加載默認檢查不?有關於此的任何想法?jQuery的實時更改和默認加載,默認不工作
$(document).ready(function() {
var target = $('.product-options select').find(":selected").val();
if(target == "2" || target == "4"){
$(".beans-msg").html("would you like beans?").show();
} else {
$(".beans-msg").hide();
}
console.log(target);
$('.product-options select').live('change',function(){
var changedVal = $(this).find(":selected").val();
if(changedVal == "2" || changedVal == "4"){
$(".beans-msg").html("would you like beans?").show();
} else {
$(".beans-msg").hide();
}
console.log(changedVal);
});
});
現場()已過時? – adeneo 2013-02-19 00:12:12
我知道,但這個軟件使用v1.5.2 – 2013-02-19 00:17:21