我想查看来自其他网站的内容... 不要工作我的代码(只有jquery,ajax,javascript)
我的代码:
jQuery.ajax({
url: 'http://www.varzesh3.com/table/min/Spain?cols=1110000011',
type: 'GET',
success: function(res) {
var data = jQuery(res.responseText).find('.table').text();
jQuery('#test').html(data);
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table id="test"></table>