我有两个功能
function ShowCrossWord(var randN)
{
randomnumber = randN;
$(document).ready(function() {
$.get("crosswords.xml",{},function(xml){
$('crossword',xml).each(function(i) { });
});
});
}
和
function ShowLegend(var randN)
{
randomnumber = randN;
$(document).ready(function() {
$.get("legends.xml",{},function(xml){
$('legend',xml).each(function(i) {});
});
});
}
我在同一个javascript文件中使用这些:
var randomNumber=Math.floor(Math.random()*233);
ShowCrossWord(randomNumber);
ShowLegend(randomNumber);
它们似乎都没有用。 什么是解决方案。
答案 0 :(得分:1)
你期待发生什么,实际发生了什么?
所以我可以看到:
我建议您仔细检查上面的这些要点,然后使用FireBug进一步缩小问题的范围。
答案 1 :(得分:0)
我猜你从服务器发送的XML的mimetype是错误的。这样做是非常挑剔的,或者不会在客户端上解析XML。
您可以尝试注册成功和错误的回调函数,并记录错误消息和XMLHTTPRequest对象。