?script language="javascript" type="text/javascript">
function clearNullAttachmentAndLinkNews() {
var uri = window.location.href;
var table_array = document.body.getElementsByTagName("table");
for (var i = 0; i < table_array.length; i++) {
if (table_array[i].rows.length > 0
&& table_array[i].rows[0].cells.length > 0
&& table_array[i].rows[0].cells[0].innerText == " 附件?) {
if (table_array[i].getElementsByTagName("a").length == 0) {
table_array[i].style.display = "none";
}
}
}
var linkNews = document.getElementById("linkNews");
if (linkNews != null) {
if (linkNews.rows.length < 1) {
linkNews.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode
.parentNode.parentNode.parentNode.style.display = "none";
}
}
}
if (window.location.href.indexOf('/10954/') == -1)
clearNullAttachmentAndLinkNews();
|