当我添加我的JQuery脚本时,有人可以告诉我为什么我的表行href链接被删除了。我将URL添加到html但是当我添加脚本时,URL被删除。以下是我的表格代码:
<table border="0">
<tbody>
<tr class="header">
<td>Header</td>
</tr>
<tr>
<td><a href="http://www.google.com">Data Row 1 Goes Here...</a></td>
</tr>
<tr>
<td>Data Row 2 Goes Here...</td>
</tr>
<tr class="header">
<td>Header</td>
</tr>
<tr>
<td>Data Row 1 Goes Here...</td>
</tr>
</tbody>
</table>
答案 0 :(得分:0)
这是我的剧本:
<script>
window.jQuery || document.write('<script src="//code.jquery.com/jquery-1.9.1.min.js">\x3C/script>');
</script>
<script language="javascript">
_spBodyOnLoadFunctionNames.push("HideBrandingsuite");
function HideBrandingsuite()
{
document.getElementById('pageTitle').style.visibility = 'hidden';
}
$('tr.header').click(function(){
$(this).nextUntil('tr.header').css('display', function(i,v){
return this.style.display === 'table-row' ? 'none' : 'table-row';
});
});
</script>