JavaScript"这个"按钮onclick的getAttribute

时间:2016-10-30 06:01:12

标签: javascript getattribute

以下代码片段在一个数组中工作,用于传递"索引"属性值为" i"到一个按钮onclick功能:

    button.setAttribute('index',i);
     button.setAttribute('onclick','getProductInfo(this.getAttribute("index"))');

我想要做的是创建一个var,它将获得特定的"这个"索引如:

      button.setAttribute('index',i);
      var thisIndex= button.getAttribute(this.index);
      button.setAttribute('onclick','getProductInfo(thisIndex))'

一个额外的冗余步骤,但我想知道如何解决这个问题? 任何想法

1 个答案:

答案 0 :(得分:0)

使用字符串连接

// The Strings of the list below can have the edge spaces.
List<String> list = Arrays.asList("Mango", " Apple", " Banana ", " Blackberry");
    String banana = "Banana"; // with no edge spaces
    if (list.contains(banana)) {
        System.out.println("Yes it is listed"); // How can I print this line ?
}