-
IE8、Firefox下$.getJSON不执行,chrom正常。怎么办呢?30
var strStudentID = id;
var url = "http://www.cui.com/SearchStudent.ashx?jsoncallback=?";
var data = {StudentID: strStudentID};
$.getJSON(url,data,alert("1"),function(data){
//$("#divResult").text(data.Name);
$("#democreatTime").text(data.CreateTime);
$("#demoName").text(data.Name);
$("#demoRemark").text(data.Remark);
alert("2");
});
-----------------------------------------------------------------------------
IE8和Firefox下能弹出框输出1但不能弹出框输出2,得不到返回数值。但在chrome一切正常。
这是为什么呢。
问题补充:niuzai 写道亲,getJSON最多三个参数吧~ 你搞了4个参数的嘛
$.getJSON(url,data,alert("1"),function(data){}) ,
你的第三个参数就成了alert("1"),而不是处理结果的callback函数咯~
参见:jQuery.getJSON(url, [data], [callback])
alert("1")我只是想看看它会不会执行到getJson。但我去掉,alert("1")的时候,也一样不会输出2.
问题补充:niuzai 写道把你的完整html发一份过来,我帮你看看咯~
HTML只有引用js代码和调用js办法的代码。
以下是js代码:
// JavaScript Document
function abc(id){
var strStudentID = id;
var url = "http://www.cui.com/SearchStudent.ashx?jsoncallback=?";
var data = {StudentID: strStudentID};
$.ajax({cache:'false'});
$.getJSON(url,data,function(data){
//$("#divResult").text(data.Name);
$("#democreatTime").text(data.CreateTime);
$("#demoName").text(data.Name);
$("#demoRemark").text(data.Remark);
alert("getjson.");
});
var code = "此处为html代码";
var html = unescape(code);
document.writeln(html);
}
问题补充:niuzai 写道GET SearchStudent.ashx...096232&StudentID=3 302 Found http cui.com 135 B 10.254.91.19:8520 172.18.40.28:80 GET www.cui.com 200 OK http cui.com 25.3 KB 10.254.91.19:8520 172.18.40.28:80
以上证明是进行了ajax请求的,只不过请求重定向了~ 所以需要你提供一个真实存在的StudentID测试一下。
StudentID= 1或者2或者3
问题补充:wanghuanqiu 写道你声明的data var data = {StudentID: strStudentID};
在getJson里$("#democreatTime").text(data.CreateTime);
data不存在CreateTime
有的,在chrome下是可以完美运行的
问题补充:niuzai 写道亲,你这里的问题在于请求的资源返回的不是json数据格式,而是html.
最后服务器再转发到 www.cui.com。我这边chrome下也是一样的。
结论:$.getJSON是没有问题,问题在于你访问的资源返回的非json数据格式。jquery不能正确处理。
按你这么说,那我在chrome下怎么就又正常呢。
问题补充:niuzai 写道测试一下这个~ 如果可以运行,那就是你请求资源的问题了~
//var url = "http://www.cui.com/SearchStudent.ashx?StudentID=1&jsoncallback=?";
var url = "http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?"
$.getJSON(url, function(data){
alert(data);
});
试了结果:
chrome能输出[object object]
ie和firefox没反应,不输出也没报错。
问题补充:niuzai 写道测试一下这个~ 如果可以运行,那就是你请求资源的问题了~
//var url = "http://www.cui.com/SearchStudent.ashx?StudentID=1&jsoncallback=?";
var url = "http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?"
$.getJSON(url, function(data){
alert(data);
});
找到问题所在了。var code = "此处为html代码"; var html = unescape(code); document.writeln(html);
这段生成html代码搞鬼,去掉就没问题。。
但是我想js生成html页面,怎么办呢。用什么办法
问题补充:niuzai 写道亲,js生成html当然是操作Dom咯~
1.原生方式:
var table = document.createElement("table");
// 根据数据动态生成 tr,td
...
var tableDiv = document.getElementById("tableDiv");
tableDiv.appendChild(table);
2.jquery方式:
var table = $("<table>你的页面内容</table>");
table.appendTo($("#tableDiv"));要生成整个页面,div+css还有table好麻烦哦
问题补充:niuzai 写道亲,js生成html当然是操作Dom咯~
1.原生方式:
var table = document.createElement("table");
// 根据数据动态生成 tr,td
...
var tableDiv = document.getElementById("tableDiv");
tableDiv.appendChild(table);
2.jquery方式:
var table = $("<table>你的页面内容</table>");
table.appendTo($("#tableDiv"));
怎么让在A页面调用js生成页面是在新建页面生成的,而不是在A页面覆盖生成了呢。2012年5月16日 17:19
22个答案 按时间排序 按投票排序
-
var data = {StudentID: strStudentID};
这是json格式的数据吗?应用是这样的吧
var data = {"StudentID":strStudentID};
2012年5月30日 17:13
-
我在IE,firefox下运行楼主的代码都是正常的。
引用问题补充:怎么让在A页面调用js生成页面是在新建页面生成的,而不是在A页面覆盖生成了呢。
没理解你的意思,你的意思是说,你在A页面发送了个AJAX请求之后,页面跳转到B页面啦?然后你在新生成的B页面用JS生成页面?
很显然,AJAX请求本身是不会跳页面的,你发送请求到接到请求始终是在A页面,如果中途跳转到B页面,那么服务器对原AJAX请求的回应会被抛弃。
也就是说,你在A页面用AJAX请求,并想根据返回的结果来改变页面的话,那么就是改的A页面,不可能改其他页面。2012年5月24日 14:00
-
使用原生的比较好。我自己就是封装了原生的。
function jsonpRequest(url,data,func){ if('[object Function]' != Object.prototype.toString.call(func)){ func = function(){}; } if(null == window.fwJsonpCallbackId){ window.fwJsonpCallbackId = 0; } if(null == window.fwJsonpData){ window.fwJsonpData = {}; } var jsonpScript = document.createElement("script"); //jsonp回调函数 jsonpScript.onreadystatechange = function(){ if('complete' == this.readyState ||'loaded' == this.readyState){ this.onreadystatechange = null; if(null == window.fwJsonpData[""+curFwJsonpCallbackId]){ alert("服务器"+getServerUrl(url)+"没有返回数据"); }else{ func(window.fwJsonpData[""+curFwJsonpCallbackId]); } //删除全局变量的数据 delete window.fwJsonpData[""+curFwJsonpCallbackId]; //删除创建的script。经Drip.exe测试,由于IE的设计,实际并不能删除 //jsonpScript.onreadystatechange = null; //document.getElementsByTagName("head")[0].removeChild(jsonpScript); } } //在url末尾加上参数 var query = ""; for(var key in data){ query += "&" + key + "=" + encodeURIComponent(data[key]); } var curFwJsonpCallbackId = ++window.fwJsonpCallbackId; query += "&callback="+"fwJsonpCallback"+(curFwJsonpCallbackId); query += "&t=" + new Date().getTime(); url = url + "?" + query.substring(1); //将服务器返回的JSON数据放到全局变量 window["fwJsonpCallback"+curFwJsonpCallbackId] = function(data){ window.fwJsonpData[""+curFwJsonpCallbackId] = data; }; jsonpScript.src = url; document.getElementsByTagName("head")[0].appendChild(jsonpScript); //截取url的服务器地址部分并返回 function getServerUrl(aurl){ var pos = 0; for(var i=0;i<4;i++){ pos = aurl.indexOf("/", pos+1); } return aurl.substring(0,pos); } }
2012年5月21日 13:40
-
尽量不要用document.write。
既然用了jquery
我比较喜欢 $('#ss').append('<a href=xxxx>fsadfa</a');
这种处理。2012年5月19日 15:29
-
引用niuzai 写道
亲,js生成html当然是操作Dom咯~
1.原生方式:
var table = document.createElement("table");
// 根据数据动态生成 tr,td
...
var tableDiv = document.getElementById("tableDiv");
tableDiv.appendChild(table);
2.jquery方式:
var table = $("<table>你的页面内容</table>");
table.appendTo($("#tableDiv"));
怎么让在A页面调用js生成页面是在新建页面生成的,而不是在A页面覆盖生成了呢。
如果是要返回HTML頁面而且是在新分页里,建议不要用Ajax功能,直接是要<a>标签,由服务器返回新页面。2012年5月19日 09:51
-
亲,js生成html当然是操作Dom咯~
1.原生方式:
var table = document.createElement("table");
// 根据数据动态生成 tr,td
...
var tableDiv = document.getElementById("tableDiv");
tableDiv.appendChild(table);
2.jquery方式:
var table = $("<table>你的页面内容</table>");
table.appendTo($("#tableDiv"));2012年5月18日 09:18
-
测试一下这个~ 如果可以运行,那就是你请求资源的问题了~
//var url = "http://www.cui.com/SearchStudent.ashx?StudentID=1&jsoncallback=?";
var url = "http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?"
$.getJSON(url, function(data){
alert(data);
});2012年5月17日 15:37
-
亲,你这里的问题在于请求的资源返回的不是json数据格式,而是html.
最后服务器再转发到 www.cui.com。我这边chrome下也是一样的。<!DOCTYPE html> <!--[if lt IE 7 ]> <html class="ie ie6 no-js" lang="en"> <![endif]--> <!--[if IE 7 ]> <html class="ie ie7 no-js" lang="en"> <![endif]--> <!--[if IE 8 ]> <html class="ie ie8 no-js" lang="en"> <![endif]--> <!--[if IE 9 ]> <html class="ie ie9 no-js" lang="en"> <![endif]--> <!--[if gt IE 9]><!--><html class="no-js" lang="en"><!--<![endif]--> <!-- the "no-js" class is for Modernizr. --> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>CUI Inc | Electromechanical products for an interconnected world</title> <meta name="title" content="CUI Inc | A Supplier of Electronic Components for OEM Manufacturers"> <meta name="description" content="CUI designs, manufactures, and markets electronic components for the OEM with a focus on bringing innovative products to market and creating collaborative partnerships with our customers."> <meta name="keywords" content="CUI Inc Home"> <meta name="author" content="Ky Belderrain - CUI Inc."> <meta name="Copyright" content="Copyright CUI Inc. 2012. All Rights Reserved."> <meta name="viewport" content="width=device-width,initial-scale=1"> <!-- Start javascript includes --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js" type="text/javascript"></script> <!-- jquery-ui included for autocomplete functionality --> <script src="/Scripts/jquery-ui-1.8.17.js" type="text/javascript"></script> <script src="/Scripts/script.js" type="text/javascript"></script> <script src="/Scripts/jquery.unobtrusive-ajax.js" type="text/javascript"></script> <script src="/Scripts/MicrosoftAjax.js" type="text/javascript"></script> <script src="/Scripts/MicrosoftMvcAjax.js" type="text/javascript"></script> <script src="/Scripts/MicrosoftMvcValidation.js" type="text/javascript"></script> <!-- end scripts--> <!-- video --> <script src="/Scripts/plugins/videojs/video.js"></script> <!-- IE 8 testing --> <script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script> <!-- jquery css is for autocomplete --> <link href="/Content/themes/base/jquery.ui.all.css" rel="stylesheet" type="text/css" /> <link href="/Content/themes/base/jquery-ui.css" rel="Stylesheet" type="text/css" /> <!-- <link href="/Content/demo_table_jui.css" rel="stylesheet" type="text/css" /> <link href="/Content/demo_table_jui-overrides.css" rel="stylesheet" type="text/css" /> --> <link href="/Scripts/plugins/videojs/video-js.css" rel="stylesheet"> <link href="/Content/style.css" rel="stylesheet" type="text/css" /> <!-- IE includes --> <!--[if lt IE 7 ]><link href="/Content/ie-style.css" rel="stylesheet" type="text/css" /><![endif]--> <!--[if IE 7 ]><link href="/Content/ie-style.css" rel="stylesheet" type="text/css" /><![endif]--> <!--[if IE 8 ]><link href="/Content/ie-style.css" rel="stylesheet" type="text/css" /><![endif]--> <link rel="apple-touch-icon" href="/Images/icons/apple-touch-icon.png" /> <script src="/Scripts/libs/modernizr.custom.49929.js" type="text/javascript"></script> <script src="/Scripts/DataTables-1.9.0/media/js/jquery.dataTables.js" type="text/javascript" ></script> <!-- for tinyMCE --> <script src="/Scripts/tinymce/jquery.tinymce.js" type="text/javascript"></script> <script> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-1499664-1']); _gaq.push(['_setDomainName', '.cui.com']); _gaq.push(['_setSessionCookieTimeout', 1800000]); _gaq.push(['_trackPageview']); (function () { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script type="text/javascript"> $(document).ready(function () { $("#nav li").has("ul").hover(function () { $(this).addClass("current").children("div").fadeIn(); }, function () { $(this).removeClass("current").children("div").hide(); }); }); </script> </head> <body> <header> <div class="line wrapper"> <div class="unit size1of4 logo"> <a class="img" href="/"><img alt="CUI Inc" src="/Images/logo/cui-logo-nav.png" /></a> </div> <nav class="unitRight size1of2 line"> <ul id="nav" class="main-nav"> <li class="unit size1of5"> <a class="nav-item" href="/">Products</a> <div class="dd shadow"> <div class="dd-multi-col"> <h6><a href="/Catalog/Power">Power</a></h6> <ul class="sub-nav"> <li><a href="/Catalog/Power/AC-DC_Power_Supplies">AC-DC Power</a></li> <!-- this should link to the Ac-Dc Converters page --> <li><a href="/Catalog/Power/DC-DC_Converters">DC-DC Power</a></li> <!-- this should link to the Dc-Dc Converters page --> </ul> </div> <div class="dd-multi-col"> <h6><a href="/Catalog/Motion_Control">Motion Control</a></h6> <!-- this should link to the Motion Control page --> <ul class="sub-nav"> <li><a href="/Catalog/Motion_Control/Incremental_Encoders">Incremental</a></li> <!-- this should link to the Incrimental page --> <li><a href="/Catalog/Motion_Control/Absolute_Encoders">Absolute Encoders</a></li> <!-- this should link to the Absolute page --> </ul> </div> <div class="dd-multi-col"> <h6><a href="/Catalog/Components">Components</a></h6> <!-- this should link to the Components page --> <ul class="sub-nav"> <li><a href="/Catalog/Components/Buzzers">Buzzers</a></li> <!-- this should link to the Buzzers page --> <li><a href="/Catalog/Components/Connectors">Connectors</a></li> <!-- this should link to the Connectors page --> <li><a href="/Catalog/Components/Microphones">Microphones</a></li> <!-- this should link to the Microphones page --> <li><a href="/Catalog/Components/Speakers">Speakers</a></li> <!-- this should link to the Speakers page --> <li><a href="/Catalog/Components/Thermal_Management">Thermal</a></li> <!-- this should link to the Thermal page --> </ul> </div> </div> </li> <li class="unit size1of5"><a class="nav-item" href="/Quality/Quality">Quality</a></li> <!-- this should link to the Quality Landing page --> <li class="unit size1of5"> <a class="nav-item" href="/Company/Company">Company</a> <!-- this should link to the Company Landing page ... ? --> <div class="dd shadow"> <div class="dd-col"> <ul class="sub-nav"> <li><a href="/Company/Company/CoreValues">Core Values</a></li> <!-- this should link to the Core Values page --> <li><a href="/Company/Company/Philanthropy">Philanthropy</a></li> <!-- this should link to the Philanthropy page --> <li><a href="/Company/Company/Leadership">Leadership</a></li> <!-- this should link to the Leadership page --> </ul> </div> </div> </li> <li class="unit size1of5"> <a class="nav-item" href="/News/CombinedNews">News</a> <!-- this should link to the News Landing page --> <div class="dd shadow"> <div class="dd-col"> <ul class="sub-nav"> <li><a href="/News/PressRelease">Press Releases</a></li> <!-- this should link to the Press Releases page --> <li><a href="/News/InTheNews">In The News</a></li> <!-- this should link to the In the News page --> </ul> </div> </div> </li> <li class="unit size1of5"> <a class="last-nav-item" href="/Contact/ContactUs">Contact</a> <!-- this should link to the Contact page --> </li> </ul> </nav> </div> </header> <section> <div class="social"> <ul> <li> <a href="http://www.facebook.com/#!/pages/CUI-Inc/156848194430?ref=ts" class="img" target="blank"> <img src="/Images/icons/facebook.png" alt="CUI on Facebook" /> </a> </li> <li> <a href="https://twitter.com/#!/CUIInc" class="img" target="blank"> <img src="/Images/icons/twitter.png" alt="CUI on Twitter" /> </a> </li> <li> <a href="https://plus.google.com/b/111284534911495373102/#111284534911495373102/posts" class="img" target="blank"> <img src="/Images/icons/google_plus.png" alt="CUI on Google+" /> </a> </li> <li> <a href="http://www.linkedin.com/companies/99891" class="img" target="blank"> <img src="/Images/icons/linkedin.png" alt="CUI on Linkedin" /> </a> </li> </ul> </div> </section> <div class="body-cont"> <section class="clear-fix"> <section class="second-nav-bg"> <div class="wrapper"> <div class="unitRight"> <div class="line"> <div class="unit second-nav-item"> <a href="/Products/RFQ">Request a Quote</a> </div> <div class="unit second-nav-item"> <a href="/StockCheck">Distributor Stock</a> </div> <div class="unit"> <div class="line"> <form action="/Products/Product/SearchByPartialMatch" method="post"> <!-- Search input will go here--> <div class="unit search-padding"> <input class="search" type="text" id="baseautocomplete" value="Model Number Search" onfocus="this.value='';" name="partnumber" /> </div> <div class="unitRight"> <input class="button-search prod-search" type="submit" value="Search" /> </div> </form> </div> </div> </div> </div> </div> </section> <!-- end secondary nav --> <section class="hero"> <div class="wrapper"> <section class="feature-slide"> <div class="line"> <article class="unit size2of3"> <div class="content"> <div class="flexslider"> <ul class="slides"> <li> <img src="/Images/slider_images/Title_Slide.jpg" alt="CUI" /> <!-- <p class="flex-caption">we can put a caption if we want</p> --> </li> <li> <a href="/Catalog/Power"> <img src="/Images/slider_images/Power_Slider.png" alt="CUI Power" /> </a> </li> <li> <a href="/Catalog/Motion_Control"> <img src="/Images/slider_images/MotionControl_slider.jpg" alt="CUI Motion Control" /> </a> </li> <li> <a href="/Catalog/Components"> <img src="/Images/slider_images/Components_slider.jpg" alt="CUI Components" /> </a> </li> </ul> </div> </div> </article> <article class="unit size1of3"> <div class="content media-stream"> <h3 class="underline">What's New</h3> <div class="article-link underline"> <a href="/News/CombinedNews/GetNews/74?newsType=PressRelease"> <div class="media"> <div class="line"> <div class="unit size1of3 img"> <img src="/Products/Image/GetImage/1159?typeCode=M" alt="Image Coming Soon" /> </div> <div class="unit size2of3 bd"> <p><small>5/14/2012</small></p> <p>CUI Launches New Website</p> </div> </div> </div> </a> </div> <div class="article-link underline"> <a href="/News/CombinedNews/GetNews/73?newsType=PressRelease"> <div class="media"> <div class="line"> <div class="unit size1of3 img"> <img src="/Products/Image/GetImage/1091?typeCode=M" alt="Image Coming Soon" /> </div> <div class="unit size2of3 bd"> <p><small>5/1/2012</small></p> <p>CUI Introduces Medical External Power Supplies</p> </div> </div> </div> </a> </div> <div class="article-link underline"> <a href="/News/CombinedNews/GetNews/70?newsType=PressRelease"> <div class="media"> <div class="line"> <div class="unit size1of3 img"> <img src="/Products/Image/GetImage/1084?typeCode=M" alt="Image Coming Soon" /> </div> <div class="unit size2of3 bd"> <p><small>4/17/2012</small></p> <p>CUI Expands SMT Switching Regulator Line</p> </div> </div> </div> </a> </div> </div> </article> </div> </section> </div> <!-- end wrapper --> </section> <!-- end hero section --> <section> <div class="wrapper"> <article class="unit size1of3"> <div class="content"> <div class="mediav"> <a href="/Catalog/Power"><img src="/Images/Feature-Power_homepage.png" alt="VOF Series" /></a> <div class="bd"> <div class="hd"> <a href="/Catalog/Power"><h3 class="underline">Power</h3></a> </div> <p class="featured-prod">A leading manufacturer of ac-dc power supplies and dc-dc converters, ranging from 0.25 W~2400 W.</p> <div class="ft"> <a class="button" href="/Catalog/Power">Learn More</a> </div> </div> </div> <!-- end media block --> </div> </article> <article class="unit size1of3"> <div class="content"> <div class="mediav"> <a href="/Catalog/Motion_Control"><img src="/Images/Feature-MotionControl_homepage.png" alt="ACZ12 Series" /></a> <div class="bd"> <div class="hd"> <a href="/Catalog/Motion_Control"><h3 class="underline">Motion Control</h3></a> </div> <p class="featured-prod">Machine and human interface rotary encoders highlighted by the patented AMT capacitive technology.</p> <div class="ft"> <a class="button" href="/Catalog/Motion_Control">Learn More</a> </div> </div> </div> <!-- end media block --> </div> </article> <article class="unit size1of3"> <div class="content"> <div class="mediav"> <a href="/Catalog/Components"><img src="/Images/Feature-Component_homepage.png" alt="SJ-3501-SMT" /></a> <div class="bd"> <div class="hd"> <a href="/Catalog/Components"><h3 class="underline">Components</h3></a> </div> <p class="featured-prod">Comprehensive range of interconnect, acoustic, and thermal management devices.</p> <div class="ft"> <a class="button" href="/Catalog/Components">Learn More</a> </div> </div> </div> <!-- end media block --> </div> </article> </div> </section> <!-- end main section --> <section> <div class="wrapper"> <div class="unit size2of3"> <div class="content"> <h3 class="underline">A CUI Overview</h3> <p>Headquartered in Tualatin, OR, CUI Inc is a technology company focused on the development and distribution of electro-mechanical products. Our diverse Power, Motion Control, and Component product portfolios allow engineers to address design challenges across a range of industries and applications. Built on a solid foundation of core operating principals, our customers have come to rely upon our engineering, manufacturing, and logistics expertise that have been developed over the past 22 years serving the electronics market.</p> <p>CUI Inc. is a subsidiary of <a href="http://www.cuiglobal.com/" target="blank">CUI Global, Inc.</a>, a publicly traded company who's common stock trades on the NASDAQ Exchange under the symbol <strong>CUI</strong>.</p> </div> </div> <div class="unit size1of3"> <div class="content media-stream"> <h3 class="underline">What We Are Saying</h3> <div id="twitterDiv"> </div> <!-- end article link --> </div> </div> </div> </section> <!-- end section --> <script type="text/javascript"> $(function () { $.ajax({ url: "http://api.twitter.com/1/statuses/user_timeline.json?screen_name=cuiinc&include_entities=true", type: "GET", dataType: "jsonp", data: {}, callbackParameter: "callback", success: function (data) { var maxToShow = 3; var currentCount = 0; var tweetAppend = ""; for (var i = 0; i < data.length; i++) { var text = replaceURLWithHTMLLinks(data[i].text); text = replaceTwitterHashtagswithHTMLLinks(text); text = replaceTwitterUsernameswithHTMLLinks(text); text = "<div>" + text + "</div>"; var user = data[i].user.screen_name; var tweetID = data[i].id_str; //var date = data[i].created_at.substring(0, data[i].created_at.length - 11); //var date = parseTwitterDate(data[i].created_at); var date = parseDate(data[i].created_at); var imageURL = data[i].user.profile_image_url; var tweet = '<div class="content-twitter">' + '<div class="underline">' + '<div class="line">' + '<div class="unit size1of4 img">' + '<img src="' + imageURL + '" alt="img" width="64" height="64" />' + '</div>' + '<div class="unit size3of4 bd">' + '<p><strong><a href="http://www.twitter.com/cuiinc">CUIInc</a></strong></p>' + '<p><em><small>' + date + '</small></em></p>' + text + //'<p>' + text + '</p>' + '</div>' + '</div>' + '</div>' + '</div>' tweetAppend = tweetAppend + tweet; currentCount = currentCount + 1; if (currentCount >= maxToShow) { break; } } $("#twitterDiv").append(tweetAppend); } }); }); </script> <!-- Start javascript includes --> <script src="../../Scripts/plugins/flexslider/jquery.flexslider-min.js"></script> <!-- Hook up the FlexSlider --> <script type="text/javascript"> $(window).load(function () { $('.flexslider').flexslider(); }); </script> </section> </div> <section class="footer"> <div class="wrapper"> <footer> <div class="unit size1of3"> <div class="foot-content"> <p><small>© Copyright <strong>CUI Inc</strong> 2012. All Rights Reserved.</small></p> </div> </div> <div class="unit size2of3"> <div class="foot-content"> <ul> <li class="foot-nav-item"> <a class="foot-nav-tab" href="/Contact/ContactUs">Contact</a> </li> <li class="foot-nav-item"> <a class="foot-nav-tab" href="/Home/SiteMap">Site Map</a> </li> <li class="foot-nav-item"> <a class="foot-nav-tab" href="/Home/PrivacyPolicy">Privacy Policy</a> </li> <li class="foot-nav-item"> <a class="foot-nav-tab" href="/Home/Terms">Terms</a> </li> </ul> </div> </div> </footer> </div> </section> <!--[if lt IE 7 ]> <script src="js/libs/dd_belatedpng.js"></script> <script>DD_belatedPNG.fix("img, .png_bg"); // Fix any <img> or .png_bg bg-images. Also, please read goo.gl/mZiyb </script> <![endif]--> </body> </html>
以下是JQuery API 跨域访问的例子,完全正常。可是替换成你的url就不行了!
//var url = "http://www.cui.com/SearchStudent.ashx?StudentID=1&jsoncallback=?"; var url = "http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?" $.getJSON(url, function(data){ alert(data); });
结论:$.getJSON是没有问题,问题在于你访问的资源返回的非json数据格式。jquery不能正确处理。
2012年5月17日 13:29
-
用$.ajax() 来请求吧,别用getJson
获取到json格式的字符串后,用eval来转换,或者自己解析也行.
或者你获取到字符串后,看看是不是getJson里面转换出问题了.2012年5月17日 12:18
-
GET SearchStudent.ashx...096232&StudentID=3 302 Found http cui.com 135 B 10.254.91.19:8520 172.18.40.28:80 GET www.cui.com 200 OK http cui.com 25.3 KB 10.254.91.19:8520 172.18.40.28:80
以上证明是进行了ajax请求的,只不过请求重定向了~ 所以需要你提供一个真实存在的StudentID测试一下。2012年5月17日 10:41
-
你声明的data var data = {StudentID: strStudentID};
在getJson里$("#democreatTime").text(data.CreateTime);
data不存在CreateTime2012年5月17日 10:15
-
你看一下jQuery文档:
jQuery.getJSON( url, [data], [callback] )
url String
The URL of the page to load.
data (Optional) Map
Key/value pairs that will be sent to the server.
callback (Optional) Function
A function to be executed whenever the data isloaded successfully.
2012年5月17日 09:28
-
亲,getJSON最多三个参数吧~ 你搞了4个参数的嘛
$.getJSON(url,data,alert("1"),function(data){}) ,
你的第三个参数就成了alert("1"),而不是处理结果的callback函数咯~
参见:jQuery.getJSON(url, [data], [callback])2012年5月16日 17:54
-
用post,效果一样的,更安全!
$.post("url",{name:"ddd",age:"sdf"},function(data){ });
2012年5月23日 09:05
相关推荐
谷歌浏览器chrom119.0.6045.105 chrome-linux64.zip chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip 5.谷歌浏览器驱动器Chromedriver119.0.6045.105 chromedriver-linux64.zip ...
JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,被广泛用于API接口的数据传输,因为它的结构清晰、易于读写、对人类友好且容易解析。Chrome浏览器是开发者常用的工具,为了更方便地查看和理解JSON...
Chromedriver是自动化测试中不可或缺的组件,特别是对于基于Selenium WebDriver进行Web应用程序测试的开发者来说。 【描述】"chromedriver-win64_116.0.5845.62.zip" 指出这是一个压缩文件,包含了针对64位Windows...
Selenium WebDriver 是一个开源的自动化测试框架,它允许开发者编写脚本来控制浏览器,执行各种网页交互,如点击按钮、填写表单、导航到不同的URL等。WebDriver提供了与多种编程语言(如Python、Java、C#、Ruby等)...
ChromeStandalone_54.0.2840.59_Setup,chrom的离线安装包,官方原版
谷歌浏览器chrom121.0.6167.184 chrome-linux64.zip chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip 5.谷歌浏览器驱动器Chromedriver121.0.6167.184 chromedriver-linux64.zip ...
在这个主题中,我们将深入探讨"python ie,chrom driverServer",即如何在Python环境下使用Selenium WebDriver来驱动IE和Chrome浏览器。 首先,我们来看`IEDriverServer.exe`,这是Selenium用于与IE浏览器交互的驱动...
这个插件允许用户在谷歌浏览器(Chrome)、火狐(Firefox)、360浏览器以及欧朋浏览器(Opera)等现代浏览器上,通过特定的URL链接来启动Internet Explorer(IE)的新窗口。这样,即使公司的某些内部项目是基于旧版...
JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,被广泛用于前后端交互,而Chrome作为一款流行的浏览器,提供了多种方法来查看和处理JSON数据。对于Java后端开发者而言,理解并掌握如何在Chrome中...
本篇文章将深入探讨如何使用JavaScript实现自定义滚动条,并确保其在Internet Explorer(IE)、Firefox和Chrome等主流浏览器中的兼容性。 首先,我们需要理解不同浏览器对滚动条的支持情况。在CSS中,Webkit内核的...
【标题】"chrom+chromedriver.zip" 暗示了这是一个包含Chrome浏览器和ChromeDriver的压缩文件。ChromeDriver是Google Chrome浏览器的一个自动化工具,主要用于Web应用程序的自动化测试,特别是Selenium WebDriver...
谷歌浏览器chrom120.0.6099.71 chrome-linux64.zip chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip 5.谷歌浏览器驱动器Chromedriver120.0.6099.71 chromedriver-linux64.zip ...
**vimium for FireFox** 是一个为Firefox浏览器设计的扩展,它借鉴了Vim编辑器的理念,让网页浏览变得更加高效,尤其是对那些熟悉Vim快捷键的用户来说。这款插件将键盘操作引入到浏览器中,使用户可以不依赖鼠标进行...
谷歌浏览器chrom127.0.6491.0 chrome-linux64.zip chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip 5.谷歌浏览器驱动器Chromedriver127.0.6491.0 chromedriver-linux64.zip ...
本篇文章将探讨如何使用CSS选择器来优化代码,使之适用于IE7+、Firefox 3、Opera 9以及Chrome等主流浏览器。 首先,理解CSS选择器的性能差异是优化的关键。CSS选择器分为多个级别,从基础的ID选择器(#id)、类选择器...
安装说明 1、下载安装文件 下载插件,并在浏览器安全提示时选择【保留】,在下载文件夹中找到下载好的文件,后缀是.crx 。 说明:若出现安全提示,请选择保留。...注:如不起作用,可重启浏览器(亲测可用)
chromedriver.exe是一个用于自动化控制和管理谷歌Chrome浏览器的执行文件,通常作为Selenium测试框架的一部分。它允许开发者在自动化测试和网页抓取中模拟用户与浏览器的交互。 【使用人群】 适用于软件测试工程师...
"chrom.adm.rar"是一个压缩包,包含了管理Google Chrome浏览器的 ADM(Active Directory Manifest)文件。ADM文件是一种特定格式的文本文件,用于在Microsoft Active Directory环境中管理组策略对象(GPO),以控制...
谷歌浏览器chrom124.0.6367.8 chrome-linux64.zip chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip 5.谷歌浏览器驱动器Chromedriver124.0.6367.8 chromedriver-linux64.zip ...
谷歌浏览器chrom121.0.6167.8 chrome-linux64.zip chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip 5.谷歌浏览器驱动器Chromedriver121.0.6167.8 chromedriver-linux64.zip ...