<script src="https://www3.nhu.edu.tw/js/public/NewsBase.js"></script>
<table border="1" width="600" cellspacing="0" cellpadding="9" style="border-collapse: collapse" bordercolor="#C0C0C0" >
<tr>
<td height="20" bgcolor="#81C784">
<p align="center"><b><font size="4" color="#FFFFFF">單位訊息公告</font></b></td>
</tr>
<tbody id="NewsTable1">
</tbody>
</table>
<table border="1" width="600" cellspacing="0" cellpadding="9" style="border-collapse: collapse" bordercolor="#C0C0C0" >
<tr>
<td height="20" bgcolor="#D28C33">
<p align="center"><b><font size="4" color="#FFFFFF">單位訊息公告</font></b></td>
</tr>
<tbody id="NewsTable2">
</tbody>
</table>
<script>
$(document).ready(function () {
DataLoader.load({
url: "https://nhuopendata.nhu.edu.tw/api/GetNews?W=80&T=533&L=10",
target: "#NewsTable1", //網頁中唯一的id
template: function (item) {
//下方為自訂區塊內容
return `
<tr>
<td valign="top">
<a href="https://www3.nhu.edu.tw/Web/NewsDetail?mid=&nid=${item.NSID}" target="_blank">${item.NewsTitleCh}</a>
</td>
</tr>
`;
}
});
});
</script>
<script>
$(document).ready(function () {
DataLoader.load({
url: "https://nhuopendata.nhu.edu.tw/api/GetNews?W=80&T=533&L=10",
target: "#NewsTable2", //網頁中唯一的id
template: function (item) {
//下方為自訂區塊內容
return `
<tr>
<td valign="top">
<a href="https://www3.nhu.edu.tw/Web/NewsDetail?mid=&nid=${item.NSID}" target="_blank">${item.NewsTitleCh}</a>
</td>
</tr>
`;
}
});
});
</script>