如何使用dom
从td中获取href网址<td class="left"><a href="index.php&del=3" onclick="return confirmnDelete()"><img src="delete.png" style="border: none"/></a></td>
答案 0 :(得分:2)
给出的信息不够,但是:
alert(document.getElementById("theTable").rows[0].cells[0].firstChild.href);
答案 1 :(得分:2)
如果您为该锚点分配了ID,但如果您不想对标记进行任何更改,那将会很有帮助:
var allCells = document.getElementByTagName("TD");
for(var i = 0; i < allCells.length; i++){
if(allCells[i].className == "left"){
if(allCells[i].firstChild && allCells[i].firstChild.tagName.toLowerCase() == "a"){
if(allCells[i].firstChild.onclick.toString().replace("return confirmDelete()", "") != allCells[i].firstChild.onclick.toString()){
return allCells[i].firstChild.href;
}
}
}
答案 2 :(得分:0)
你能使用像jquery这样的dom操作库吗?如果是这样,那么就像:
$('.left > a').click(function(e) {
e.preventDefault();
var url = $(this).attr('href');
})