下列FB的連結, 為傳統HTML語法, 煩請將其改寫成Ajax格式, 感謝..
<div><table><tr><td><iframe src="http://www.facebook.com/widgets/like.php?href=http://ithelp.pixnet.net" scrolling="no" frameborder="0" style="border: none; width: 350px; height: 35px"></iframe></td></tr></table></div>
deanyajQuery教學-jQuery Include HTML、插入html、jquery替代iframe提到:
這你不是已經做好了嗎?! XD
deanyajQuery教學-jQuery Include HTML、插入html、jquery替代iframe提到:
你可以參考教學文
參考了Loading cross domain html page with jQuery AJAX
幫你改寫如下
<pre class="c" name="code"><div style="width:351px; line-height:35px;" id="Lcs"> </div>
<script>
$.getJSON('http://whateverorigin.org/get?url=' +
encodeURIComponent('http://www.facebook.com/widgets/like.php?href=http://ithelp.pixnet.net') + '&callback=?',
function(data){
$("#Lcs").html(data.contents);
});
</script>
But, FB 有擋這種涉嫌盜連的行為, 所以會失敗!!
請教deanya大師, 我並無需連結到 http://whateverorigin.org 此網址
其中轉換的源由為何..
...參考資料有寫
deanya提到:
FB 有擋這種涉嫌盜連的行為, 所以會失敗!
還是會連結失敗...