php 如何显示文本与值同时从我的下拉列表中选择选项标签?

kb5ga3dv  于 2022-11-21  发布在  PHP
关注(0)|答案(1)|浏览(151)

我尝试在下拉列表中显示这些厘米,沿着显示我的值的价格
第一个
heres my output but i wanted also to display the centimeter which is selected

lnxxn5zx

lnxxn5zx1#

$this.value是包含价格的值。你应该使用$this.text,因为它是高度值。你应该如下修改js函数

if($this.value>0){ 
$('.divHeight').text('Height: '+$('#psheight option:selected').text());
$('.divPrice').text("Price: " + $this.value);
}

相关问题