警报用户从引导按钮中选择

时间:2016-04-21 07:13:11

标签: jquery

在这个JSFiddle之后,我试图在他从“Likert scale”中选择一个按钮后警告()用户他的选择。

https://jsfiddle.net/taxvkvu9/

尝试类似:

HttpUrl template = HttpUrl.parse("http://example.com/{a}/b/{c}");
HttpUrl.Builder builder = template.newBuilder();

for (int i = 0; i < template.pathSegments().size(); i++) {
  String parameter = template.pathSegments().get(i);
  String replacement = null;

  if (parameter.equals("{a}")) {
    replacement = "foo";
  } else if (parameter.equals("{c}")) {
    replacement = "bar";
  }

  if (replacement != null) {
    builder.setPathSegment(i, replacement);
  }
}

HttpUrl url = builder.build();
然而,它似乎没有起作用。我错过了什么?

4 个答案:

答案 0 :(得分:3)

您需要添加句点并删除空格

$(".btn.btn-default").click(function () {
  alert($(this).text()); /* this alerts the text content of the button */
});

答案 1 :(得分:2)

您在.中遗失$(".btn btn-default"),像这样写$(".btn.btn-default")

Fiddle

答案 2 :(得分:0)

$(".btn .btn-default").on("click",function() {
    alert(event.relatedTarget.textContent);
}); 

答案 3 :(得分:0)

尝试以下代码..

$(".btn-toolbar button").click(function () {
  alert($(this).html());
});