爱听歌书包

文章
7
资源
0
加入时间
3年1月10天

获取checkbox勾选的id

需求描述:做批量删除或者批量修改的时候需要获得多个id,根据checkbox勾选来获取对应的d两种方法://html代码<table id="table1"> <tr th:each="pac : ${list}" th:id="${pac.packajeId}"> <td> <label class="mt

使用PHP读取远程文件

来源:http://www.software8.co/wzjs/PHPshili/527.html从php读取一个远程文件你至少有四个选项:1. 使用fopen()2. 使用 file_get_contents()3. CURL4,让你自己的函数使用php的socket函数。首先我要警告你关于一些。你可以只使用 fopen()和 file_get_contents()...