2

我有一个下拉列表,我需要比较下拉列表中的值(余额)并将其与全局变量进行比较,然后执行 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 选择中的余额是多少?如果是这样,我很感激一个指针,让我朝着正确的方向前进。

4

4 回答 4

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();
    }
});
于 2012-05-10T19:20:17.070 回答
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 ) ;
});

演示:http: //jsbin.com/upotuy/2/edit

于 2012-05-10T19:21:25.163 回答
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>

这使您无需任何时髦的文本解析即可获得值。例如:

$("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();
}
于 2012-05-10T19:17:05.760 回答
0
$("select[name=batch]").change(function () {
 var selectedText= "";
      $("select option:selected").each(function () {
            selectedText+= $(this).text() + " ";
          });
于 2012-05-10T19:30:46.657 回答