我遇到的函数参数有问题。
function SearchContact(admin@yourstore.com,John Smith,12345678)
{
....code here-...
}
当在firebug / console中看到时,它给出了错误
SyntaxError: illegal character
请给我解决方案。
提前谢谢。
答案 0 :(得分:1)
您需要以这种方式传递函数参数
function SearchContact(email,name,value)
{
....code here-...
}
通过传递实际值
来调用该函数SearchContent('admin@yourstore.com','John Smith',12345678)
答案 1 :(得分:0)
你应该像这样定义函数
function SearchContact(email, name, number)
{
....code here-...
}
然后你需要调用这样的函数。
SearchContact('admin@yourstore.com','John Smith', 12345678);
如果你想点击一个按钮调用该功能,你应该这样做:
<button onclick="SearchContact('admin@yourstore.com','John Smith', 12345678)>
答案 2 :(得分:0)
您需要将文字换成引号。 此外,如果您的代码示例直接来自您的代码,则需要将参数名称从admin@yourstore.com更改为&#34; email&#34;