单击按钮就显示出数据,懂ASP的进
点击文本框旁边的按扭就弹出小窗口,然后筛选出数据,双击该条数据就可以将内容粘贴到文本框.(类似于VB程序的数据选择)请问这个功能如何实现?我没有分数,请各位朋友帮帮忙,如...
点击文本框旁边的按扭就弹出小窗口,然后筛选出数据,双击该条数据就可以将内容粘贴到文本框.(类似于VB程序的数据选择)请问这个功能如何实现?我没有分数,请各位朋友帮帮忙,如果能把源码传给我就更好了,谢谢!
邮箱:393547699@qq.com
---------------------------------------------------------------
求大神们帮忙啊,没分数我给Q币 展开
邮箱:393547699@qq.com
---------------------------------------------------------------
求大神们帮忙啊,没分数我给Q币 展开
3个回答
展开全部
以下代码保存到任一网页文件(如:a.html):
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<form action="" name="form1" method="post">
<input type="text" name="text" value="">
<input type="button" name="button" value="button" onClick="window.open('b.html','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')">
</form>
</body>
</html>
以下代码保存到b.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script>
function writetext(str){
window.opener.document.form1.text.value=str;
//window.close(); //双击后关闭该窗口
}
</script>
</head>
<body>
<form action="" name="form" method="post">
<input type="checkbox" name="box" value="A" ondblclick="writetext('A');"> A
<input type="checkbox" name="box" value="B" ondblclick="writetext('B');"> B
<input type="checkbox" name="box" value="C" ondblclick="writetext('C');"> C
<input type="checkbox" name="box" value="D" ondblclick="writetext('D');"> D
</form>
</body>
</html>
原理就是这样,要怎么扩充就看你自己的想法了!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<form action="" name="form1" method="post">
<input type="text" name="text" value="">
<input type="button" name="button" value="button" onClick="window.open('b.html','','status=no,scrollbars=no,top=20,left=110,width=420,height=165')">
</form>
</body>
</html>
以下代码保存到b.html:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script>
function writetext(str){
window.opener.document.form1.text.value=str;
//window.close(); //双击后关闭该窗口
}
</script>
</head>
<body>
<form action="" name="form" method="post">
<input type="checkbox" name="box" value="A" ondblclick="writetext('A');"> A
<input type="checkbox" name="box" value="B" ondblclick="writetext('B');"> B
<input type="checkbox" name="box" value="C" ondblclick="writetext('C');"> C
<input type="checkbox" name="box" value="D" ondblclick="writetext('D');"> D
</form>
</body>
</html>
原理就是这样,要怎么扩充就看你自己的想法了!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询