我想通过以下javascript onclick事件将动态生成的值传递给其他javascript函数。代码如下:
var data = function(value, rowIndex) {
var Id = this.grid.getItem(rowIndex).ID;
//alert("ID+ " + Id);
return "<img src=../img/normal.jpg width=\"20\" height=\"20\" onClick=\"show(Id)\">";
};
show(id){
alert(id);//unable to get id value here from the above onclick event.can't we pass dynamic value as shown above.
}
感谢。
答案 0 :(得分:1)
您的退货声明应该是这样的:
return "<img src=../img/normal.jpg width=\"20\" height=\"20\" onClick=\"show(" + Id + ")\">";