bootstrap的复制按钮是怎么实现的

bootstrap的复制按钮是怎么实现的,第1张


如下所示可以得到按钮的值:

<script>
    $(function(){
        $("btn")click(function(){
            alert($(this)val());
        });
    })
</script>

<textarea readonly rows="31" cols="80" id="registerUrl" onclick=copyinput()>A bird is in the tree</textarea>

<input type="button" value="复制" onclick="copyinput()"/>

<SCRIPT LANGUAGE="JavaScript">
function copyinput()
{
var input=documentgetElementById("registerUrl");//input的ID值
inputselect(); //选择对象
documentexecCommand("Copy"); //执行浏览器复制命令
}
</SCRIPT>

using System;
using SystemCollectionsGeneric;
using SystemComponentModel;
using SystemData;
using SystemDrawing;
using SystemText;
using SystemWindowsForms;
namespace WindowsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();

}
private void Form1_Load(object sender, EventArgs e)
{
object[] source ={"sky","sea","hill" };
comboBox1ItemsAddRange(source);//将上面三项加入到组// /可以用comboBox1ItemsAdd(object ob);/
int count = comboBox1ItemsCount;//组合框中元素个数,此时是3
comboBox1SelectedIndex = 0;//默认选择第一个(0-count-1)
}
private void button1_Click(object sender, EventArgs e)
{
object temp=new object();
if(comboBox1SelectedIndex!=-1)//判断选择部位空
{
temp=comboBox1SelectedItem;//得到当先Combobox中选中的内容
}
textBox1Text=(string)temp;//将组合框中的值以字符的形式显示在文本框中
}
}
}
代码已经测试过

方法/步骤

从开始菜单-程序-Microsoft Office文件夹,运行Microsoft Office Excel 2007

打开一个要编辑的工作日志纪录Excel文件

在打开的Excel文件中,右键点击工作表名称,在出现的菜单中,打开 移动或复制工作表

在移动或复制工作表对话框中,选中 移至最后,并勾选 建立副本,然后点击 确定

这样新创建复制工作表就会出现在Excel文件中,不过文件名不是我们需要的

可以通过 双击新建工作表的名称来快速修改工作表名字,

也可以通过,右键点击新建工作表的名称,然后选择 重命名,来进行修改

重复以3-6的步骤,就可以很快得完成创建复制工作表和重命名的工作了是不是很简单,很快捷呢朋友们,也去试下吧!

17:11 2016/1/19


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/13398037.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-07-28
下一篇 2023-07-28

发表评论

登录后才能评论

评论列表(0条)

保存