window.location.href="跳转url"
<option value=> 对数据进行处理
jsp中字符双引号,值单引号。 user_list += '<option value="'+userData[i].user_id+'">'+userData[i].name+'</option>';
1、<span> </span> 对行内进行操作
<span> <span> <b>你好</b> </span> 大家好</span>
2、表格中
<table>
<tr>
<th> 表格中的表头 table head</th>
<th width="30%" >占整行的30%</th>
</tr>
<tr>
<td> 表格中的body 列 </td>
<td colspan="3">这一列 colspan表示跨过多少列 </td>
</tr>
</table>