尝试在Facebook上创建一个FAN区域,我需要将所有产品发布给我的Facebook粉丝。
我的php文件创建了纯HTML,我想从Facebook端获取。
如果可以这样做,怎么做呢?
以下是我的script.js文件的全部内容
$.ajax({
type:"POST",
url:"https://www.mysite.com/includes/facebook_fan_page.php",
data: data,
dataType:"html",
error:function(){},
success:function(response){
$('#products').html(response);
}
})
这是我的index.html
<html>
<head>
[[style.css]]
<script type="text/javascript" src="https://www.mysite.com/js/jquery-
1.8.2.min.js"></script>
[[script.js]]
</head>
<body>
<div class="content">
<div id="products"></div>
</div>
</body>
</html>
我不知道如何将输出写入我的应用div
页index.html
<div id="products"></div>
此外,我在Facebook上使用的应用程序是静态HTML iFrame选项卡,如果它有任何区别
请帮忙
感谢大家提前
我的ajax和js技能非常有限,所以请耐心等待。
答案 0 :(得分:0)
这也是Ajax Post请求的一种方法,我觉得很简单。告诉我你是否觉得这很有用
在HTML页面中
在脚本文件或标记
中
$.POST("filename.php", data, function(response) {
if(!response) {
alert("Oh Snap! I hate this part");
}
else {
$("#div").html(response.field);
}
});