私はhtmlを持っています
index.html:
<html>
<head>
<title>Facebook</title>
<script type="text/javascript" src="../xdata/js/jquery.js"></script>
</head>
<body>
Tasks (<span id="tasks">0</span>)
Messages (<span id="messages">0</span>)
Notifications (<span id="notifications">0</span>)
<script type="text/javascript">
$(document).ready(function() {
var pagetitle = document.title;
document.title = pagetitle+' NEW NOTIFICATON';
});
</script>
</body>
</html>
およびxmlファイル
page.xml:
<?xml version="1.0" ?>
<page tasks="1" messages="3" notifications="3"/>
5秒ごとにfaceboook( "(1)Facebook")のようにタイトルindex.html
を読んpage.xml
で変更し、タスク、メッセージ、通知を変更するにはどうすればよいですか...
xmlの読み取りに問題があります。誰かが私を助けることができますか?
PS-私はjQueryが好きです...しかしJavaScriptも同様に機能します