Js dom 拼接传参问题
Q
根据json,循环生成 table,table中 有button, click需要传入参数
- 方法1 ```js // result is Js object // result.name is string
result.name = “Hello”;
// this is wrong, 因为生成的 html代码, Hello 是个变量名 ‘’ // 输出
// this is right ‘’ // 输出 ```
- 方法2
根据json,循环生成 table,table中 有button, click需要传入参数
result.name = “Hello”;
// this is wrong, 因为生成的 html代码, Hello 是个变量名 ‘’ // 输出
// this is right ‘’ // 输出 ```