私はこれを持っているので、ページの読み込み時に値が取得され、真の場合は機能したメッセージが表示されますが、変更を使用したときに変更が行われなかったので、変更時に機能するライブ変更機能を使用しましたが、現在は負荷のデフォルトチェックは機能しませんか? これに関するアイデアはありますか?
$(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);
});
});