如何编辑代码,OnClick的功能是否自动运行? 这是代码:
<form name="statusUpdate" action="" method="">
<textarea style="width:0; height: 0;" name="status" id="status" readonly>VARIABLE 1 http://bit.ly/VxwZWv </textarea>
<br />
<input type="button" onclick="updateStatusViaJavascriptAPICalling(); return false;" value="KLIKNIJ, ABY ROZPOCZAC" />
</form>
和功能:
function updateStatusViaJavascriptAPICalling(){
var status = document.getElementById('status').value;
FB.api('/me/feed', 'post', { message: status }, function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Ok. Teraz w menu wybierz opcje GENERUJ ');
}
});
}
由于
答案 0 :(得分:0)
将onload属性添加到HTML Body标记:
<body onload="updateStatusViaJavascriptAPICalling();">
答案 1 :(得分:0)
没有 jQuery:
<body onload="javascript:function();">
或强>
<head>
<script type="text/javascript">
window.onload=function(){
};
</script>
</head>
或者如果使用jquery只是将它放在你的document.ready函数中,那么它将在页面加载而不是点击按钮上发生。
如果您希望按钮存在并被隐藏,则没有人可以单击它...但您可以使用隐藏的输入执行此操作,然后运行“某个时间”的功能。