JavaScript返回表单的enctype属性<!DOCTYPE html><html><body><form id="frm1" enctype="text/plain">First name: <input type="text&quo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1154浏览 1169个赞
JavaScript获取网页表单的action属性,即要提交到的url地址,有时候需要提交到当前页面,则可能会设置action为空,下面代码提取到的action属性也为空。<!DOCTYPE html><html><body><form id="frm1" action="s……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1433浏览 1036个赞
JavaScript获取网页支表单持的字符集,通过表单的acceptCharset方法获得<!DOCTYPE html><html><body><form id="frm1" accept-charset="ISO-8859-1">First name: &……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1762浏览 935个赞
下面的JS代码可以遍历指定表单中的所有元素,并输出元素的值<!DOCTYPE html><html><body><form id="frm1" action="form_action.aspx"> First name: <input type=&q……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3084浏览 2458个赞
知道按钮的id向获取按钮放在哪一个表单内,可以通过下面的JS代码获取<!DOCTYPE html><html><body><h1>www.75271.com</h1><form id="form1"><button id="button1……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2712浏览 2394个赞
按钮有一个value属性,我们可以通过按钮的value属性获得按钮上显示的文本<!DOCTYPE html><html><body><input type="button" id="button1" value="Click Me!">……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1896浏览 520个赞
下面的JS代码通过按钮对象的disabled属性控制按钮是否可用<!DOCTYPE html><html><body><form>Buttons:<input type="button" id="firstbtn" value="OK&qu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2667浏览 2645个赞
JavaScript获取网上指定id的按钮的名字(name),按钮包含了name属性,可以直接获取<!DOCTYPE html><html><body><button id="button1" name="button1">Click Me!</butt……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1825浏览 331个赞
如果网页中定义了base,我们可以通过js代码获得base url地址<!DOCTYPE html><html><head><base id="htmldom" href="http://www.75271.com/jsref/"></head>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1309浏览 2411个赞
JS中的document.title可以获取当前网页的标题<!DOCTYPE html><html><head><title>75271.com</title></head><body>current document's title is: &……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3150浏览 1040个赞
下面的JS代码通过document.referrer获得来源页面地址<!DOCTYPE html><html><body>The referrer of this document is:<script>document.write(document.referrer);</script……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3017浏览 1072个赞
下面的JS代码输出当前网页最后修改时间,用到了document.lastModified属性<!DOCTYPE html><html><body>This document was last modified on:<script>document.write(document.lastModi……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1586浏览 2069个赞
JavaScript获得当前日期是星期几,主要通过getDay函数获得当前日期是一个星期的第几天<!DOCTYPE html><html><body><p id="demo">Click the button to display todays day of the week.&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2743浏览 965个赞
JavaScript通过replace函数替换字符串,下面的代码将Visit Microsoft中的MicroSoft替换成75271.com<!DOCTYPE html><html><body><p>Click the button to replace "Microsoft"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2469浏览 2916个赞
JavaScript通过indexOf获得子字符串在字符串中的位置<!DOCTYPE html><html><body><p id="demo">Click the button to locate where in the string a specifed value occ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2881浏览 1081个赞
字符串对象有一个公用的属性length用于获得字符串的长度<!DOCTYPE html><html><body><script>var txt = "Hello World!";document.write(txt.length);</script>&l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2612浏览 2894个赞
下面的代码通过函数的方式定义了一个对象person,并通过new方法对其进行实例化<!DOCTYPE html><html><body><script>function person(firstname,lastname,age,eyecolor){this.firstname=firstna……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2495浏览 1957个赞
JavaScript中可以直接通过类似python字典的方式定义对象,下面的代码你一看就能明白怎么回事,不用多说。<!DOCTYPE html><html><body><script>person={firstname:"John",lastname:"Doe&quo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1656浏览 1552个赞
JavaScript通过setTimeout显示一个简单的电子时钟,这段代码主要演示了时间函数和setTimeout定时执行函数的用法<!DOCTYPE html><html><head><script>function startTime(){var today=new Date();var……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1913浏览 1077个赞
下面的代码执行后点击按钮会延迟3秒钟弹出一个警告框,主要演示了setTimeout的使用方法<!DOCTYPE html><html><body><p>75271.com Click the button to wait 3 seconds, then alert "Hello"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2074浏览 1553个赞
点击按钮后每隔一秒计数器增加1,通过setTimeout实现<!DOCTYPE html><html><head><script>var c=0;var t;var timer_is_on=0;function timedCount(){document.getElementById(&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2840浏览 423个赞
下面的代码通过try…catch语句捕捉错误后弹出confirm对话框,如果用户点击cancel按钮则跳转至首页<!DOCTYPE html><html><head><script>var txt="";function message(){try { ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2382浏览 2047个赞
我们可以通过设定按钮的onclick属性来给按钮绑定onclick事件<!DOCTYPE html><html><head><script>function displayDate(){document.getElementById("demo").innerHTML=Dat……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1952浏览 2956个赞
JavaScript中通过for…in语句遍历对象,JS中我们可以通过for..in语句输出对象的每一个元素和元素值<!DOCTYPE html><html><body><p>75271.com Click the button to loop through the properties……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2904浏览 248个赞
和C语言一样,JavaScript中可以通过break语句终止循环的继续执行<!DOCTYPE html><html><body><p>75271.com Click the button to do a loop with a break.</p><button onclick……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2473浏览 1652个赞
下面的代码演示了JavaScript中do…while循环语句的使用方法<!DOCTYPE html><html><body><p>Click the button to loop through a block of as long as <em>i</em> ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2882浏览 1400个赞
下面的JS代码监听文本框的onkeydown和onkeyup事件,分别在键盘按下和弹起时触发,并定义setStatus函数响应键盘事件<script type="text/javascript">function setStatus(name,evt) {evt = (evt) ? evt : ((event) ? ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2925浏览 2617个赞
下面的JS代码通过window.open打开链接,通过this.href获取当前超级链接。<a href='http://www.75271.com'onclick='window.open(this.href,"Pennies","resizable=yes,status=yes,……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2011浏览 778个赞
下面的JS代码可以统计表单中有多少个checkbox被选中,在问卷调查中经常会用到<form name="form3" action="#"><div>Who are your favorite browncoats? Please select all that apply to ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2284浏览 150个赞
JavaScript向OL列表内动态添加LI元素的方法,下面JS代码每次点击按钮都会想OL列表中动态添加一个LI<script type="text/javascript">function addItem() { var myitem = document.getElementById("ItemToAd……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1927浏览 690个赞
下面的JS代码当用户点击提交按钮后,通过元素的textContent或者innerHTML动态指定元素的内容<script type="text/javascript">function showCard() { var message = document.getElementById("CCN"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2411浏览 751个赞
表单提交时通过JavaScript判断哪个radio按钮被选中了<script type="text/javascript">function findButton() {var myForm = document.forms.animalForm;var i;for(i=0;i<myForm.marsup……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2734浏览 2387个赞
下面的JS代码定义了一个movie函数对象,并通过冒号(:)的形式定义了两个属性,通过new方式声明对象实例后即可通过点操作符调用对象属性了,非常方便。<script type="text/javascript">function movie(title, director) { title : title; ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3081浏览 872个赞
Django通过GET获取中文参数乱码的解决办法转自:http://blog.chinaunix.net/uid-25525723-id-346236.html DJANGO获取时使用一个自定义函数:namecode = jsUnescape(request.GET.get(&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1512浏览 274个赞
jQuery判断JavaScript数组是否包含了指定的元素var arr = [ "xml", "html", "css", "js" ]; $.inArray("js", arr); //返回 3, ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3008浏览 692个赞
javascript转换日期字符串为Date日期对象 把一个日期字符串如“2014-4-28 12:31:45”转换为Date对象:var strArray=str.split(" "); var strDate=strA……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2094浏览 434个赞
这段代码可以用来获取用户通过鼠标在文本输入框或者textarea里选择的选本。需要注意ie的问题 注:当在IE里使用非按钮的元素onclick触发事件的时候,会得不到结果。因为在IE里,当一个非按钮元素被click,整个页面中的选择内容将会被改变。而在firefox,opera下就不……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2187浏览 666个赞
某些框架也使用 $ 符号作为简写(就像 jQuery),如果您在用的两种不同的框架正在使用相同的简写符号,有可能导致脚本停止运行,下面有个不错的解决方法。其他一些 JavaScript 框架包括:MooTools、Backbone、Sammy、Cappuccino、Knockout、JavaScript&nb……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2446浏览 2074个赞
Javascript结合html5 的localStorage实现购物车代码 shoppingCart.js 代码utils = { setParam : function (name,value){ localStorage.setIte……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1520浏览 123个赞
JavaScript控制栏目的显示和隐藏代码 1.构建JavaScript库(function(){ //将命名空间IC注册到window window['JSHide']={}; //隐藏侧边栏,并将图片换成右箭头图片 functio……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2053浏览 2318个赞
一个简单的js日期比较函数,经常用到<html> <head> <script language="javascript" type="text/javascript"> /** 日期比较 **/ function compareDate(strDate1,s……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2497浏览 612个赞
asp.net 环境下当javascript验证不通过是禁止button按钮执行onclick事件<script type ="text/javascript" language="javascript"> function checkInput() { ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3123浏览 941个赞
近日项目中要做一个鼠标拖拽层的效果,于是手动使用Jquery做了一个,发出来跟大伙儿分享一下,并希望能得到高手的指点,如果哪位大侠觉得我的思路和代码不正确或者需要改进的话,希望能指点一二,在下感激不尽。 1、在鼠标按下的时候,捕获鼠标的当前位置; 2、得到要移动对……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3102浏览 194个赞
纯JavaScript实现的网页画板类代码,这个类是纯JS实现的,不是使用的HTML5的canvas,非常酷。 今天需要在网页上画一个图谱,想到用JS,经过学习,和网上搜索,经过整理优化得到下面代码,注意不是用HTML5的canvas,而是用的纯js/* 以下画点,画线,画圆的方法……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3049浏览 1952个赞
在javascript和php之间传递变量的代码演示 PHP variable to Javascript variable: <?php $myvar=10; ?> <s……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1608浏览 896个赞