87,992
社区成员
发帖
与我相关
我的任务
分享
<body>
<a href="userManage_froze.do?userId=123&frozeReason=" onClick="return sfun(this);">点击链接</a><p>
<input type="text" id="text"/>
<script type="text/javascript">
function sfun(obj){
var text=document.getElementById("text").value;
obj.href=obj.href+text;
alert(obj.href);
return confirm('确定要冻结该用户吗?');
}
</script>
</body>