更改表

时间:2015-12-24 19:20:26

标签: javascript html mysql sorting

我想过滤我的结果。我想通过选择选项对表参数进行排序。

这是我的输出 My Output

我为此编写了HTML代码,如下所示:

<div class ="sort">
  <dl class="vertical">
    <dt>
      <label for="sort" title="Sort"><strong>Sort</strong></label>
    </dt>
    <dd>
      <select id="selectBox" onchange="changeFunc();" size="1"  tabindex = "3">
        <option id="name" value="1">Name</option>
        <option id="size" value="2">Size</option>
        <option id="date" value="3">Date Modified</option>
      </select>
    </dd>
  </dl>
</div>

任何人都可以通过选择向我建议如何获得输出。我需要创建对象类吗?

1 个答案:

答案 0 :(得分:0)

您可以使用jquery获取选择值:

function changeFunc(){
// get value of select option first
var optionval = $('#selectBox').val();

// optionval should be 1 or 2 or 3
// now you can use ajax request after this and dispaly response where u want to show.

// your ajax request.
}