我需要在asp文本框中保留图像按钮..这是可能的 [英] I need to keep image button inside asp text box..is it possible

查看:71
本文介绍了我需要在asp文本框中保留图像按钮..这是可能的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有asp文本框。我必须在右侧保留一个小图像按钮。当我点击那个图像弹出一个将打开..

I have asp text box. I have to keep one small image button in the right side. when i cick that image one pop up will open..

推荐答案

你应该用Google搜索它。有许多解决方案可供选择。无论如何,这是工作样本: JSFiddle [ ^ ]
You should have googled it. There are a number of solutions available. Anyways, here is the working sample: JSFiddle[^]


您所指的技术通常没有文本框内的按钮,按钮和文本框的边框和背景只是与包装div混合。这是一个基本的例子:





The technique you're referring to doesn't actually have the button inside the textbox normally, the border and background of the button and textbox simply blend in with a wrapper div. Here is a basic example:


<div class="wrapper">
    <input type="text" />
    <button>GO</button>
</div>




.wrapper {
    border:1px solid #000;
    display:inline-block;
}

input,
button {
    background-color:transparent;
    border:0;
}


这篇关于我需要在asp文本框中保留图像按钮..这是可能的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆