<script type="text/javascript">
var data = '<%=data%>';
$(function(){
alert(1)
getNoticeDetail();
})
function getNoticeDetail(){
$.ajax({
type : "post",
url : "../RhNoticeAction.do",
dataType : "json",
timeout : 60000,
async : false,
data : {
},
success : function(resp) {
if (resp.status == "0") {
} else {
alert("失败!")
}
}
});
}
</script>