0
我有以下輸出。如何使用javascript查找href的子串
<tr id='row_27' valign='top'>
...
...
<td width="5%"><a href="http://localhost/daikon2/index.php/projects/admin/delete_log/6/6/27" class="deleteme"><img src="http://localhost/daikon2/assets/icons/delete.png" alt="delete" title="Delete Log" /></a></td>
</tr>
我想用javascript獲取href中的最後一段27。
我試過以下,但沒有發生。
var id =href.substring(href.lastIndexOf("/") + 1);
alert (id);
任何人都可以幫助我嗎?
在此先感謝。