level 1
可梦猛萌蒙
楼主
<table>
<tr>
<th>id</th>
<th>报表名</th>
<th>URL</th>
<th>操作</th>
</tr>
<tr>
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td><input type="text" value="http://localhost:5000/show/{{item.id}}" readonly></td>
<td><span class="copy">复制</span>
<a href="/show/{{item.id}}">查看</a>
修改生成报表</td>
</tr>
</table>
怎样从span标签中找到input里面的value的值
2018年09月26日 09点09分
1
<tr>
<th>id</th>
<th>报表名</th>
<th>URL</th>
<th>操作</th>
</tr>
<tr>
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td><input type="text" value="http://localhost:5000/show/{{item.id}}" readonly></td>
<td><span class="copy">复制</span>
<a href="/show/{{item.id}}">查看</a>
修改生成报表</td>
</tr>
</table>
怎样从span标签中找到input里面的value的值