我尝试在下拉列表中显示这些厘米,沿着显示我的值的价格第一个heres my output but i wanted also to display the centimeter which is selected
lnxxn5zx1#
$this.value是包含价格的值。你应该使用$this.text,因为它是高度值。你应该如下修改js函数
if($this.value>0){ $('.divHeight').text('Height: '+$('#psheight option:selected').text()); $('.divPrice').text("Price: " + $this.value); }
1条答案
按热度按时间lnxxn5zx1#
$this.value是包含价格的值。你应该使用$this.text,因为它是高度值。你应该如下修改js函数