如何从代码后面获取引导程序多选所选值?

时间:2016-05-26 10:48:50

标签: bootstrap-multiselect

使用SimpleDateFormat hh_mm_ss = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); SimpleDateFormat dateFormat2 = new SimpleDateFormat("hh:mm a MM/dd"); try { hh_mm_ss.setTimeZone(TimeZone.getTimeZone("GMT-05:00")); Date date = hh_mm_ss.parse(arraylist.get(position).get("createddate")); hh_mm_ss.setTimeZone(TimeZone.getDefault()); String formattedDate = dateFormat2.format(date); tvPostTime.setText(formattedDate); } catch (ParseException e) { e.printStackTrace(); } 这样的<{p>}很容易获得bootstrap multiselect listbox's个选定的值

javascript

但我想从后面的代码中访问它。

1 个答案:

答案 0 :(得分:0)

您可以通过发布一些代码或尝试过的内容来获得更多/更好的帮助。

然而,这可能会让你朝着正确的方向前进? Bootstrap Multiselect Get Selected values on HttpPost