具体代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="js/jquery-1.8.3.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$.getJSON("http://v.youku.com/player/getPlayList/VideoIDS/XNDg2ODUwMDY4", function (data) {
alert(data);
});
});
</script>
</head>
<body>
</body>
</html>
------解决方案--------------------
JSONP跨域也要别人给你调用才行。。参考jQuery jsonp跨域原理