我有一个下拉菜单,我需要比较下拉列表中的值(余额)并将其与全局变量进行比较,然后执行if / else语句以显示一些HTML 。
以下是下拉列表:
<select name="batch">
<option value='null'>-- None --</option>
<option value='96'>Check (#2200) (Bal. $84.00) - Jim Jones</option>
<option value='98'>Credit Card (#0) (Bal. $90.00) - Bailey Adams</option>
</select>
这是我的jquery:
$("select[name=batch]").change(function () {
if ($(this).val() >= GlobalTotal) {
$("th#show_refund").show();
$("th#no_show_refund").hide();
} else {
$("th#show_refund").hide();
$("th#no_show_refund").show();
}
});
jquery可以确定HTML select中的余额是什么吗?如果是这样,我欣赏指向让我朝着正确的方向前进。
答案 0 :(得分:2)
我假设您正在动态构建它。在每个选项上,添加一个属性data-balance=84
或任何余额,然后使用jQuery,你会使用
$("select[name=batch] option:selected").attr("data-balance")
因此,您的完整代码将是:
<select name="batch">
<option value='null'>-- None --</option>
<option value='96' data-balance="84.00">Check (#2200) (Bal. $84.00) - Jim Jones</option>
<option value='98' data-balance="90.00">Credit Card (#0) (Bal. $90.00) - Bailey Adams</option>
</select>
$("select[name=batch]").change(function () {
if ($("select[name=batch] option:selected").attr("data-balance") >= GlobalTotal) {
$("th#show_refund").show();
$("th#no_show_refund").hide();
} else {
$("th#show_refund").hide();
$("th#no_show_refund").show();
}
});
答案 1 :(得分:2)
您可以从所选值的innerHTML
中提取该值:
// Store our Global Total
var gTotal = 87;
// Bind to the change event of our dropdown
$("select[name='batch']").on("change", function(){
// If we find a dollar amount in our selected element, save it to `amount`
if ( amount = $(":selected", this).html().match( /\$(\d+\.\d{2})/ ) )
// If that amount is greater than the Global Total
amount[1] >= gTotal
// Do something when it's greater than
? console.log( amount[1] + ' is greater than ' + gTotal )
// Do something else when it's lesser than
: console.log( amount[1] + ' is less than ' + gTotal ) ;
});
答案 2 :(得分:0)
最好将选择选项的值设置为余额,如下所示:
<select name="batch">
<option value='null'>-- None --</option>
<option value='84.00'>Check (#2200) (Bal. $84.00) - Jim Jones</option>
<option value='90.00'>Credit Card (#0) (Bal. $90.00) - Bailey Adams</option>
</select>
这使您无需任何时髦的文本解析即可获得该值。 E.g:
$("select[name=batch]").change(function () {
if ($("select[name=batch] option:selected").val() >= GlobalTotal) {
$("th#show_refund").show();
$("th#no_show_refund").hide();
} else {
$("th#show_refund").hide();
$("th#no_show_refund").show();
}
答案 3 :(得分:0)
$("select[name=batch]").change(function () {
var selectedText= "";
$("select option:selected").each(function () {
selectedText+= $(this).text() + " ";
});