多个链接 如 链接1是:a 链接2是:b 分别点击 传递input 显示 a,b 怎样实现?
<script> function PerformSubmit(user) {
document.chatForm.msgTo.value=user;
return false;}
</script>
<a href="#" >a</a>
<a href="#" >b</a>
<form name="chatForm" method="post" >
<input type="text" name="msgTo" >
先点击 a 然后点击 b
在 input text 中显示 a,b
这个怎么实现 请高手指点