日期:2014-05-16  浏览次数:20352 次

简单问题,达人乱入(50)
<td   style= "color:Blue;width:200px; "> <a   href= "frmRolesEdit.aspx?pid=30 "> 123123 </a> </td>

上面是datagrid自动生成的代码,我能用
dg.rows[i].cells[1]取到这个td的对象,也能用dg.rows[i].cells[1].innerText取到123123的值。
请问如何用这个object取到 <a   href= "xxx "> 中的链接xxx呢?

达人乱入。。

------解决方案--------------------
<table id= "aaa ">
<tr> <td style= "color:Blue;width:200px; "> <a href= "frmRolesEdit.aspx?pid=30 "> 123123 </a> </td> </tr>
<tr> <td style= "color:Blue;width:200px; "> <a href= "frmRolesEdit.aspx?pid=30 "> 123123 </a> </td> </tr>
<table>
<SCRIPT LANGUAGE= "javascript ">
alert(aaa.rows[0].cells[0].innerHTML)
alert(aaa.rows[0].cells[0].childNodes[0].nameProp)

</SCRIPT>
------解决方案--------------------
dg.rows[i].cells[1].childNodes[0].getAttirbute( "href ");