你好我有这个表格填写javascript:
function onLine(code,nn)
{
document.writeform.bericht.value+=code;
document.writeform.bericht.focus();
document.writeform.nickname.value+=nn;
write1();
}
这是对的吗? 特别是我想知道我是否做过
function onLine(code,nn)
(2个不同的值)
正确。
有人可以这么说吗?
编辑:如果它是好的,这是一个很好的方式来调用它:
...
onClick="onLine('Hello,MyThing');"
...
或者这是错的? (我认为因为它给了我脚本错误。)
答案 0 :(得分:1)
您的功能设置正确,但您调用它的方式不正确。你需要分开你的两个字符串。
...
onClick="onLine('Hello','MyThing');"
...