码迷,mamicode.com
首页 >  
搜索关键字:function    ( 54714个结果
Delphi7调用DelphiXE编写的DLL问题
http://bbs.csdn.net/topics/380045353 用DelphiXE在WIN2008下编写一个访问WebServices的DLL ws.dll,只有一个输出函数,如下:function Login(URL:PAnsiChar; UserName: PAnsiChar; Use ...
分类:Windows程序   时间:2016-09-30 01:06:10    阅读次数:306
用js控制overflow="hidden"
<html><head><style type="text/css">div{border:thin solid green;width:100px;height:100px;}</style><script type="text/javascript">function hideOverflow( ...
分类:Web程序   时间:2016-09-30 00:37:51    阅读次数:262
安装配置mysql-proxy
4.1下载所需要的版本,这里的系统平台为rhel6.432位系统,因此就以mysql-proxy-0.8.3-linux-glibc2.3-x86-32bit.tar.gz为例。#tarxfmysql-proxy-0.8.3-linux-glibc2.3-x86-32bit.tar.gz-C/usr/local#cd/usr/local#ln-svmysql-proxy-0.8.3-linux-glibc2.3-x86-32bitmysql-proxy..
分类:数据库   时间:2016-09-29 22:43:27    阅读次数:445
JQ简单实现无缝滚动
$(function(){ $("ul li:lt(5)").clone().appendTo("ul"); var $width = $("ul li:lt(5)").width() * 4; var currIndex = 0; $("#next").click(function(){ if(c ...
分类:其他好文   时间:2016-09-29 21:44:27    阅读次数:173
文件和打印的技巧-限制多文件上传的文件类型
—————————————————————— <script type="text/javascript"> function chkform(){ //获取Dom var mypic = document.forms[0].mypic; for(var i = 0 ;i<mypic.files.l ...
分类:Web程序   时间:2016-09-29 21:40:57    阅读次数:182
文件和打印的技巧-单独打开一个页面来完成打印功能
—————————————————————————— <script type="text/javascript"> function doPrint(){ window.open('print.html'); } </script> ———————————————————————— <body s ...
分类:其他好文   时间:2016-09-29 21:32:19    阅读次数:134
文件和打印的技巧-判断文件上传的类型
——————————————————————————— <script type="text/javascript"> function chkform(){ var str = document.forms[0].mypic.value; var name = str.substring(str. ...
分类:Web程序   时间:2016-09-29 21:30:08    阅读次数:111
对象和数组-把数据转换成对象
———————————————————————————————————— <script type="text/javascript"> //根据用户的输入,创建对象的数据 function buildObj(){ //获取新元素key和val的dom var key = document.getE ...
分类:编程语言   时间:2016-09-29 21:24:42    阅读次数:179
面向对象组合继承
function Person(name,sex,age){ this.name = name; this.sex = sex; this.age = age;}Person.prototype.eat = function(){ console.log("每个人都会吃饭");}function P ...
分类:其他好文   时间:2016-09-29 21:22:42    阅读次数:158
js设置input框的选中值
/* 设置表单的值 */ function setValue(name, value) { var first = name.substr(0, 1), input, i = 0, val; if (value "") return; if ("#" first || "." first) { in ...
分类:Web程序   时间:2016-09-29 21:09:17    阅读次数:185
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!