我正在使用基于xhtml的Wapka.mobi。我想将一个字符串从一个span转移到一个表单中。这是我用过的东西
if(':user-prvar-625:'=='') {
} else {
document.getElementsByName("location")[0].innerHTML='From :user-prvar-625:';}
以下我有
function checkin(){
stat=document.getElementsByName("blog_body")
[0].value;loc=document.getElementsByName("loc")[0].value; if(':user-prvar-625:'=='') {}
else {
document.getElementsByName("blog_body")
[0].value=stat+'[checkin]'+loc+'[/checkin]';
}
}
答案 0 :(得分:0)
是stat和loc的跨度吗?
使用.innerHTML
代替.value
!