1
function getValue()
{
    alert(document.getElementById('user').value);
    return true
}

<a href="my.html" onclick="return getvalue()">Go</a>

当用户单击超链接时,在重定向到 之前my.html,它应该调用getValue()函数,该函数将从文本框中显示用户名,其 id 为user

4

2 回答 2

2

改成:

<a href="my.html" onclick="return getValue()">Go</a>

javascript区分大小写!

于 2013-06-16T09:27:37.017 回答
0

Javascript 区分大小写,因此您必须更正 a 标签中的 che 调用函数:

function getValue()
{
alert(document.getElementById('user').value);
return true
}

<a href="my.html" onclick="return getValue()">Go</a>

还必须有元素 "user" ,否则 document.getElementById('user').value 会导致错误

于 2013-06-16T09:29:38.760 回答