如果你正在使用jQuery這我假設你是,你第一個需要運行第一個js文件: http://platform.linkedin.com/in.js
所以一定要確保你有:
<script src="http://platform.linkedin.com/in.js" type="text/javascript"></script>
在文檔的頭部。
,然後在身體當u稱之爲:
$(function(){
...
//here is the hack:
resultsHtml += '<sc'+'ript type="IN/MemberProfile" data-id="'+currResult.publicProfileUrl+'" data-format="inline"></sc'+'ript>';
//remember to close script tags
$("#search-results").html(resultsHtml);
...
})
,或者你可以試試這個:
$(function(){
...
var $script = $('<script>',{
'data-format': 'inline',
type: 'IN/MemberProfile',
'data-id': "'+currResult.publicProfileUrl+'"
})
$("#search-results").html(resultsHtml);
$("#search-results").append($script);
...
})
是你用的jQuery?你應該把它添加到標籤如果是這樣的 – Neal 2011-04-14 16:42:58
如果你手動把它的配置文件的URL它的作品?那是你在說什麼? – MacAnthony 2011-04-14 16:46:05
你試過我的回答嗎? – Neal 2011-04-21 14:16:15