我想在用户发布或跳过Facebook中的Feed框时将我的文本框设置为空(空白)。我使用以下代码:
var attachment = {
.........some code here............
};
Facebook.streamPublish('', attachment,actionLinks,null,null,clear);
}
function clear()
{
document.getElementById("question").setTextValue() = "";
}
但这不起作用。 请帮帮我......
答案 0 :(得分:16)
假设您要更改的元素具有id'问题',您可以
document.getElementById("question").value = "";
答案 1 :(得分:1)
JavaScript Code :
document.getElementById("question").value = "Your value goes here";
Jquery Code :
if it's a simple text
$("#question").text("Your text goes here");
if it's a HTML code
$("#question").html("Your HTML goes here");
if you want to append to the current text value
$("#question").append("Your text goes here");