option

Event attached to Option node not being fired

二次信任 提交于 2020-01-16 09:59:31
问题 I have this code var option = new Option(thatOption.text, thatOption.value); $(option).click( function(){ //Sorry cannot reveal what is here I'll just use this so that it can be referenced alert("clicked"); } ); try{ selectBox.add(option,null); }catch(e){ // Stupid IE doesn't know how to follow the spec selectBox.add(option); } This code works in FF > 2 (don't have FF 1 oe FF 2 to test), Opera (presto), Chrome (webkit) and doesn't work on IE. When I click the option in the selectbox nothing

Jquery : If select has option 1 show div

▼魔方 西西 提交于 2020-01-16 05:19:20
问题 ok so this one was tricky for me... i have a dynamically created drop down and if the option "Other" is in that drop down i want to show div #optionalmess <select class="VariationSelect" style="width: 95px;"> <option value="">Select Size</option> <option value="1">Example</option <option value="21">Other</option> </select> so if .variationselect contains the option "Other" (or value="21") show #optionalmess if "other" (value="21") is not in the drop down, i want to hide #optionalmess im on

preg_match_all string from file with value

非 Y 不嫁゛ 提交于 2020-01-16 04:13:28
问题 I need to search into file name lll.php about content of option by value as my file lll.php <option value="n-7069">1</option> <option value="n-7066">3</option> <option value="n-7065">2</option> I try this code but not work with me my search code like n-7065 $ccc2=$rd33fddf33do['contery'] ; my file content value $llll= file_get_contents('lll.php'); but it now work with me preg_match_all('|<option *?</option>|ms', $llll, $matches); foreach ($matches[0] as $select) { preg_match_all('|value='.

Assign height property to option tag

此生再无相见时 提交于 2020-01-15 05:56:21
问题 I need to set a bigger height for the option tags inside my select. <select name="forms" id="forms"> <option value="1">Row 1</option> <option value="1">Row 1</option> <option value="1">Row 1</option> </select> I used the CSS code below for this purpose, but it did not work. option { padding-top:5px; padding-bottom:5px; } Also I have tested this one, and again, anything happened. option { height:20px; } What is your suggestions ? 回答1: The implementation of select often uses built-in routines

Windows7中使用Task Scheduler调用WinScp批处理实现上传下载文件

偶尔善良 提交于 2020-01-15 01:14:47
上一个随笔中我们提到了在Windows 7操作系统中配置ftp服务器并通过WinScp客户端来访问它,这样就可以方便的上传下载文件了。现在又有新的问题,我们发现如果项目中的文件很多,成百上千个文件,即使WinScp提供方便的文件拖拽功能,还是发现很繁杂。也许你会想到在dos中使用move命令,但是这个包含了cmd,cd,move等好几个命令,也是很费时间的。我们试图找到一种自动执行的程序,每隔一段时间来执行一次上传下载,这样我们的工作就很轻松了。这一次我们将使用dos命令做成bat文件,然后使用Task Scheduler调度bat来完成这个机械的,呆板的任务。感慨一下,只要我们想得到的,机器都能做得到!!! 批量上传 通常我们运行dos命令是首先点击开始-运行,输入cmd进入dos界面,首先要进入WinScp.exe的安装路径才能使用命令来调用它,否则会提示相关的 命令或参数不可识别。这个进入的过程就非常简单了,键入cd D:\InstallFile,键入回车,键入D:就进入这个路径了, 因此我们需要使用命令 cd D:\InstallFile D: 这里请教高手为何要再次输入D:,键入回车才会进入我想要进入的目录呢? 输入命令从本地上传文件到ftp服务器,这个命令也是从客户的服务器上看到的,在网上查还没有找到相关的信息。最后全部的命令如下: cd D:\InstallFileD

Is there CURLOPT_POSTFIELDS equivalent for GET method in CURL request?

邮差的信 提交于 2020-01-13 19:24:10
问题 What I want to do is to perform CURL request with parameters and values by using GET method but don't want to mix them before passing to curl like it is in the string www.url-to-fetch.com/index.php?parameter=value but I would like to pass separate url string and query string or at best url string + an array of parameters and values to CURL with letting to know CURL that I want to use GET method (CURLOPT_HTTPGET=TRUE). is there any CURLOPT_POSTFIELDS equivalent for GET method? 回答1: Use the

第二周 链接文件,vim

一世执手 提交于 2020-01-13 19:08:43
1、描述Linux发行版的系统目录名称命名规则以及用途。 文件命名规则:文件名最长255个字符,包括路径在内文件名最长4095个字节,除了斜杠和NUL,所有字符都有效,但使用特殊字符的目录名不推荐使用,有些字符需要用引号来引用;标准linux文件系统,文件名称大小写敏感。 /bin:二进制程序,普通用户使用 /boot:引导文件存放目录,内核文件(vmlinux)、引导加载器(bootloader,grub)都存放于此目录 /dev:设备文件、特殊文件存放位置 /mnt:临时文件系统挂载点 /opt:第三方应用程序的安装位置 /srv:系统上运行的服务用到的数据 /lib:启动时程序依赖的基本共享库文件以及内核模块文件(/lib/modules) /etc:配置文件目录 /home:用户家目录 /root:root家目录 /sbin:二进制文件,管理员用户使用 /tmp:临时文件 /usr:类似根目录的目录结构 /var:存放可变化的数据 /proc:用于输出内核与进程信息相关的虚拟文件系统 /sys:用于输出当前系统上硬件设备相关信息虚拟文件系统 /selinux:selinux相关的安全策略等信息的存储位置 2、描述文件的元数据信息有哪些,分别表示什么含义,如何查看?如何修改文件的时间戳信息? 元数据信息:文件类型、UID、GID、链接数、该文件的大小和不同的时间戳

大数据之搭建Hive(数据仓库)单用户

孤街浪徒 提交于 2020-01-12 22:39:07
第一步: 准备一个Hdfs集群,怎么搭建Hdfs集群,在我之前的博客中写过,这里就不在叙述。jdk1.7版本以上 第二步 安装mysql,使用下面的命令进行安装 yum install mysql-server 安装mysql后启动mysql服务 service mysqld start 启动后修改mysql权限,并刷新权限 登录进mysql中,输入下面命令即可 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123' WITH GRANT OPTION; //修改权限 flush privileges; //刷新权限 123为密码,可以根据个人设置 修改完成后将mysql中的test库中user表中Host!='root’的记录删除掉,然后退出mysql,在登录就需要账号密码了。 第三步 将mysql驱动mysql-connector-java-5.1.32-bin和hive安装包apache-hive-1.2.1-bin.tar.gz放在需要的目录下。我把他们放在了/root目录下 然后解压安装hive tar xvf apache-hive-1.2.1-bin.tar.gz 然后我将apache-hive-1.2.1-bin文件夹改名为hive(改不改都不影响,主要是改完以后配置环境变量时更加方便了) 第四步

Hive搭建单用户模式(MySql)

。_饼干妹妹 提交于 2020-01-12 07:23:24
在虚拟机上搭建Hive单用户模式,前提是搭建好hadoop高可用集群,这里就不详细介绍如何搭建hadoop高可用集群了,详细介绍请看 搭建Hadoop MapReduce V2高可用集群 所用的Hive版本是1.2版本和mysql-connector-java-5.1.32-bin.jar 1、安装mysql 1、使用yum安装mysql,使用命令: yum install mysql-server 2、安装完成之后启动服务:service mysqld start 3、修改用户访问权限: GRANT ALL PRIVILEGES ON . TO ‘root’@’%’ IDENTIFIED BY ‘123’ WITH GRANT OPTION; // 允许任何人访问,密码是123 flush privileges; // 更新 2、安装Hive 将Hive解压到一个地址,我这里解压到了 /opt/hes 目录下 配置环境变量 在终端输入hive,按下tab键,配置成功时显示: 3、修改配置 1、进入hive文件的conf文件中,将 hive-default.xml.template 修改为 hive-site.xml 2、将<configuration></configuration> 标签内的东西删除,添加下边的东西 < property > < name > hive

Summing up two options

空扰寡人 提交于 2020-01-12 05:28:04
问题 Let's say I have two optional Ints (both can be Some or None): val one : Option[Int] = Some(1) val two : Option[Int] = Some(2) My question is the following: Are there any intelligent way to sum them op using Scalas brilliant collection-methods? I realize that I could merge them into a collection, flatten it and use reduceLeftOption like so: (one :: two :: Nil).flatten.reduceLeftOption(_ + _) // Some(3) But, the solution above means creating a new collection, and living in a rich and developed