用前端技術有沒有好的方式,謝謝 注:不支持jsonp 回調格式網站路徑 數據請求( 返回的是html )
http://ask.csdn.net/questions/217343,不是回答過你了,format改為xml就是將內容直接作為results的項,記得采納
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.2.min.js"></script>
<script>
$.ajax({
url: 'http://query.yahooapis.com/v1/public/yql',
dataType: 'jsonp',
data: {
q: "select * from html where url=\"http://www.coding123.net/eg/base64.aspx\"",
format: "xml"
},
success: function (d) {
alert(d.results)
}
});</script>
可以好好看下這個:yql API