Welcome![Sign In][Sign Up]
Location:
Search - javascript trim

Search list

[Other Web Codejavascript常用函数

Description: javascript一些最常用的函数集合,包括常用的trim函数以及校验函数等
Platform: | Size: 12240 | Author: ray0108@gmail.com | Hits:

[DocumentsWebBrowser的8个方法和13个属性

Description: WebBrowser的8个方法和13个属性,以及它们的功能: 方法 说明  GoBack 相当于IE的“后退”按钮,使你在当前历史列表中后退一项  GoForward 相当于IE的“前进”按钮,使你在当前历史列表中前进一项  GoHome 相当于IE的“主页”按钮,连接用户默认的主页  GoSearch 相当于IE的“搜索”按钮,连接用户默认的搜索页面  Navigate 连接到指定的URL  Refresh 刷新当前页面  Refresh2 同上,只是可以指定刷新级别,所指定的刷新级别的值来自RefreshConstants枚举表, 该表定义在ExDisp.h中,可以指定的不同值如下: REFRESH_NORMAL 执行简单的刷新,不将HTTP pragma: no-cache头发送给服务器 REFRESH_IFEXPIRED 只有在网页过期后才进行简单的刷新 REFRESH_CONTINUE 仅作内部使用。在MSDN里写着DO NOT USE! 请勿使用 REFRESH_COMPLETELY 将包含pragma: no-cache头的请求发送到服务器  Stop 相当于IE的“停止”按钮,停止当前页面及其内容的载入 属性 说明  Application 如果该对象有效,则返回掌管WebBrowser控件的应用程序实现的自动化对象(IDispatch)。如果在宿主对象中自动化对象无效,这个程序将返回WebBrowser 控件的自动化对象  Parent 返回WebBrowser控件的父自动化对象,通常是一个容器,例如是宿主或IE窗口  Container 返回WebBrowser控件容器的自动化对象。通常该值与Parent属性返回的值相同  Document 为活动的文档返回自动化对象。如果HTML当前正被显示在WebBrowser中,则 Document属性提供对DHTML Object Model的访问途径  TopLevelContainer 返回一个Boolean值,表明IE是否是WebBrowser控件顶层容器,是就返回true  Type 返回已被WebBrowser控件加载的对象的类型。例如:如果加载.doc文件,就会返 回Microsoft Word Document  Left 返回或设置WebBrowser控件窗口的内部左边与容器窗口左边的距离  Top 返回或设置WebBrowser控件窗口的内部左边与容器窗口顶边的距离  Width 返回或设置WebBrowser窗口的宽度,以像素为单位  Height 返回或设置WebBrowser窗口的高度,以像素为单位  LocationName 返回一个字符串,该字符串包含着WebBrowser当前显示的资源的名称,如果资源 是网页就是网页的标题;如果是文件或文件夹,就是文件或文件夹的名称  LocationURL 返回WebBrowser当前正在显示的资源的URL  Busy 返回一个Boolean值,说明WebBrowser当前是否正在加载URL,如果返回true 就可以使用stop方法来撤销正在执行的访问操作 如何利用 WebBrowser 控件,显示 .GIF 动画? 要有一定的网页知识(HTML、JavaScript、CSS) 注意细节: 没有"滚动条"和"鼠标右键弹出的 IE 上下文菜单",".HTM 源文件" ... 我写了一个,效果还真不错! ''Objects: Form1、Command1、CommonDialog1、WebBrowser1 Option Explicit Private Sub Command1_Click() CommonDialog1.ShowOpen If VBA.Len(VBA.Trim(CommonDialog1.FileN欢迎光临学网,点击这里查看更多文章教程 [1] [2] [3] [4] [5] [6] [7] [8] ame)) > 0 Then Dim p As stdole.StdPicture Dim sPath As String sPath = VBA.Trim(VBA.Trim(CommonDialog1.FileName)) Set p = VB.LoadPicture(sPath) WebBrowser1.Width = p.Width * 16 / 26 WebBrowser1.Height = p.Height * 16 / 26 '' WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " " WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" End If End Sub Private Sub Form_Load() Command1.Caption = "&Open" WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.Close End Sub
Platform: | Size: 3992 | Author: weidonglingsir@163.com | Hits:

[JSP/Javajavascript_trim

Description: 用JS实现JAVA string中的trim()方法
Platform: | Size: 1024 | Author: Lee | Hits:

[JSP/JavaXIANXING

Description: 北京现在实施汽车尾号限行,小弟的汽车尾号是 8,每周五不能上路,如果忘记了,周五上路了,一旦被摄像头拍下,要罚 100 元,所以这个小软件的用途就是:点击 FRI(周五),FRI 这一列变成红色,提醒小弟周五不要开车。 阅读下面的源代码,您可以发现,软件是用 html/javascript/css 编写的,没有一行 java/vb/c++/c# 语句,这就是 phonegap 软件的最显著特点。 有朋友可能会问:我想在手机 SD 卡上存储文件,怎么办?由于 javascript 没有这种命令,phonegap 又额外提供了一组 javascipt 扩展命令,包括读写 SD 卡、读写 GPS、读写短信-<!doctype html> <html> <head> <meta charset="utf-8" /> <title>Don t Drive in Red Days</title> <style type="text/css"> body { background:black color:whitesmoke } body, p, span, div, td, a { font:bold 16px Arial } p, span, div, td { text-align:center } td { background:darkgreen border:1px solid black height:40px width:48px } a:link, a:active, a:visited { color:whitesmoke text-decoration:none } a:hover { color:crimson } table { border-collapse:collapse margin:auto } .header { color:crimson font-size:30px white-space:nowrap } </style> <script type="text/javascript"> String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, "") } function save(value) { var expiry, count if (navigator.userAgent.indexOf("Chrome") >= 0 || navigator.userAgent.indexOf("Safari") >= 0) { localStorage.c
Platform: | Size: 2048 | Author: 杨剑 | Hits:

[WEB Codeyantaiyl

Description: !--#include file="conn.aspx"--> < set rs1=Server.CreateObject("Adodb.Recordset") sql1="select * from webconfig " rs1.open sql1,conn,1,1 website=trim(rs1("website")) rs1.close set rs1=nothing > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html charset=utf-8" /> <script type="text/javascript" src="/js/jquery.js"></script> <script language="JavaScript" src="/js/artDialog/artDialog.js?skin=default"></script> <script src="/js/login.js" type="text/javascript"></script> <link type="text/css" rel="stylesheet" href="themes/block/main.css" /> <title>< =website ></title> </head> <body class="loginBg"> <div class="login"> <form name="form1" onSubmit="return login() ">-!--#include file="conn.aspx"--> < set rs1=Server.CreateObject("Adodb.Recordset") sql1="select * from webconfig " rs1.open sql1,conn,1,1 website=trim(rs1("website")) rs1.close set rs1=nothing > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html charset=utf-8" /> <script type="text/javascript" src="/js/jquery.js"></script> <script language="JavaScript" src="/js/artDialog/artDialog.js?skin=default"></script> <script src="/js/login.js" type="text/javascript"></script> <link type="text/css" rel="stylesheet" href="themes/block/main.css" /> <title>< =website ></title> </head> <body class="loginBg"> <div class="login"> <form name="form1" onSubmit="return login() ">
Platform: | Size: 5368832 | Author: 宋伟 | Hits:

CodeBus www.codebus.net