gpt4 book ai didi

javascript - 如何在 jQuery 中获取评分值?

转载 作者:行者123 更新时间:2023-11-29 18:11:18 25 4
gpt4 key购买 nike

我想在名为“input-star-rate”的类中获取点击评级值以发送到数据库。评级工作正常。但是我的 jQuery 不工作。

这是我的 HTML 代码。

<input class="rating form-control input-star-rate" name="rating" value="<?php echo $ratea; ?>" data-min="0" data-max="5" data-step="0.3" data-size="xs" style="display: none; text-align: center;"/>

这是我的 jQuery 代码。

$(function(){
$(".input-star-rate").on("click", function(){
var ratingValue = $this.value;
alert(ratingValue);
});
});

最佳答案

代替

var ratingValue = $this.value;

尝试

var ratingValue = $(this).val();   //Jquery syntax

var ratingValue = this.value;    //Javascript syntax

$(function(){
$(".input-star-rate").on("click", function(){
var $this = $(this); // assign $(this) to $this
var ratingValue = $this.val(); // use '.val()' as shown here
alert(ratingValue);
});
});

关于javascript - 如何在 jQuery 中获取评分值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27141230/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com