对js关键字命名的疑问

 有时候是这样:getElementById、indexOf 、charCodeAt、parseFloat、navigator.appName、navigator.appVersion/appCodeName/cookieEnable/userAgent 给人的感觉是单词的首字母大写 

 
有时候又这样:fontsize、fontcolor 给人的感觉是都是小写 
 
但有时候又这样:innerHTML 
 
有没有人能告诉我这其中有没有什么规律啊,我觉得我一段时间不用就会混掉了。在线等答案! 
 
//*****等了10分钟没人回答,那我只好继续add today's content"****************/ 
 
accesskey属性 
复制代码 代码如下:
<code class="tag" style="color:green; margin:0px 0.1em; font-size:14px; background-color:transparent"><</code><code class="tag" style="color:green; margin:0px 0.1em; font-size:14px; background-color:transparent">a</code> id='mya' <code class="attr" style="color:blue; margin:0px 0.1em; font-size:14px; background-color:transparent">href</code><code class="tag" style="color:green; margin:0px 0.1em; font-size:14px; background-color:transparent">=</code><code class="attrvalue" style="color:red; margin:0px 0.1em; font-size:14px; background-color:transparent">"</code><code class="attrvalue" style="color:red; margin:0px 0.1em; font-size:14px; background-color:transparent">"</code> <code class="attr" style="color:blue; margin:0px 0.1em; font-size:14px; background-color:transparent">accesskey</code><code class="tag" style="color:green; margin:0px 0.1em; font-size:14px; background-color:transparent">=</code><code class="attrvalue" style="color:red; margin:0px 0.1em; font-size:14px; background-color:transparent">"</code><code class="attrvalue" style="color:red; margin:0px 0.1em; font-size:14px; background-color:transparent">h</code><code class="attrvalue" style="color:red; margin:0px 0.1em; font-size:14px; background-color:transparent">"</code><code class="tag" style="color:green; margin:0px 0.1em; font-size:14px; background-color:transparent">></a></code> 
 
修改或赋值这个属性的Js代码为:document.getElemntById('#mya').accesskey='d'; 
 
各种浏览器下accesskey快捷键的使用方法 
 
IE浏览器 
 
按住Alt键,点击accesskey定义的快捷键(焦点将移动到链接),再按回车. 
 
FireFox浏览器 
 
按住Alt+Shift键,点击accesskey定义的快捷键. 
 
Chrome浏览器 
 
按住Alt键,点击accesskey定义的快捷键. 
 
Opera浏览器 
 
按住Shift键,点击esc,出现本页定义的accesskey快捷键列表可供选择. 
 
Safari浏览器 
 
按住Alt键,点击accesskey定义的快捷键. 
 

时间: 2024-10-27 21:03:01

对js关键字命名的疑问的相关文章

javascript-关于js中prototype的疑问

问题描述 关于js中prototype的疑问 /*--------------(1)---------------*/ function A(){ this.display = function(){ alert("A display"); } } function B(){ this.show = function(){ alert("B show"); } } A.prototype = new B(); var a = new A(); console.log

代码-js中setTimeout函数疑问

问题描述 js中setTimeout函数疑问 遇到一个好奇怪的问题 function RefreshData(time,Ele,url) { Ele.innerHTML = "将在" + time + "秒后自动跳转"; if (time == 0) { window.location = url; //url为到时跳转的页面URL } } function Update(secs,Ele,url) { for (var i = secs; i >= 0; i

JS关键字变色实现思路及代码_javascript技巧

1.替换关键字,对字体变色 复制代码 代码如下: public static string ReplaceRed(string strtitle, string redkey) { if (redkey == "" || redkey == null) { return strtitle; } else strtitle = strtitle.Replace(redkey, " <font color='#ff0000'>" + redkey + &qu

JS关键字球状旋转效果的实例代码_javascript技巧

有时上网查资料,看到别人的博客上有关键字旋转的效果,觉得蛮不错的.于是网上搜索了一下它的实现,好吧,自己动手写写. HTML: 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w

sql-关于SQL中as关键字的疑问?

问题描述 关于SQL中as关键字的疑问? 语句: select a.EMPLOYEE_NAME as 姓名,b.EMPLOYEE_NAME as 管理者 from EMPLOYEES as a,EMPLOYEES as b where a.MANAGER is not null and a.MANAGER = b.EMPLOYEE_ID 请问为什么在使用as之前 就可以用as起的别名?比方说例子中的a,后面才起的别名a,但是前面就已经使用了 解决方案 解决方案二: __no_init用于禁止系统

js变量初探

js是一种无类型弱检测的语言,它对变量的定义并不需要声明变量类型,我们只要通过赋值的形式就可以将各种类型的数据赋值给同一个变量:而且js中的变量是松散类型的,可以存储任何类型的数据:由于不存在定义某个变量必须要保存何种数据类型值的规则,变量的值及其数据类型可以在脚本的生命周期内改变 变量命名方法与规则: 1.变量的命名方法 (1)匈牙利命名法:变量名=类型+对象描述,变量的类型有:Int(整形).Float(浮点形).Boolean(布尔形).String(字符串).Array(数组).Obje

相对路径产生js文件、html文件。

js|js   关键字:Split()..Replace().MapPath(). using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web;using System.Web.SessionState;using System.Web.UI;using System.Web.UI.WebControls;usin

[JS.IntelliSense]VS2007(Orcas) So Cool

我很早以前就想找一个能够像VS中C#一样可以有很强的IntelliSense开发工具来写脚本JS,但是到现在还没有能够真正找到一理想的工具.很早以前听说VS2007能够给我带来一点震撼,但是又有人说那只是对ASP.NET AJAX有IntelliSense,又有点失落感.今天看到ScottGu的一篇博客发现VS2007能够提供几乎和C#一样的IntelliSense,让我激动万分,也由于很久没有写博客了顺便把自己的一些体验和大家分享一番. 由于我不是MSDN杂志的订阅者,而我很讨厌VPC虚拟机(

Obj-C的函数命名方式简介

对于以前做C#或者JAVA开发的朋友而言,初次接触iOS开发,Obj-C的函数命名方式可能会感觉非常不习惯. 尤其是打开AppDelegate.m,映入眼帘的代码竟然是: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after applicat