我想用另一个选择按钮更改多个选择按钮的值。
实际上当有人在主选择按钮中选择一个选项时,其他选择按钮必须随该值改变。
编辑:我添加了代码,第一个是主选择按钮,在我选择了somethig之后,它应该会改变其他代码。
public function getAddressAttribute()
{
return $this->city.$this->state.' - '.$this->country;
}
感谢。
答案 0 :(得分:0)
因为你没有提供代码,所以猜测:
$(".myTriggerButton").on("click", function() {
$(".buttonToChangeValue").each(function() {
this.value = "new value";
});
});
答案 1 :(得分:0)
$('.select_format').change(function(){
$('.format_imgs').val( $(this).val() );
});