function getValue()
{
alert(document.getElementById('user').value);
return true
}
<a href="my.html" onclick="return getvalue()">Go</a>
当用户单击超链接时,在重定向到 之前my.html
,它应该调用getValue()
函数,该函数将从文本框中显示用户名,其 id 为user
。
function getValue()
{
alert(document.getElementById('user').value);
return true
}
<a href="my.html" onclick="return getvalue()">Go</a>
当用户单击超链接时,在重定向到 之前my.html
,它应该调用getValue()
函数,该函数将从文本框中显示用户名,其 id 为user
。
改成:
<a href="my.html" onclick="return getValue()">Go</a>
javascript区分大小写!
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 会导致错误