代码搜索:如何学习 JS?
找到约 10,000 项符合「如何学习 JS?」的源代码
代码结果 10,000
www.eeworm.com/read/184501/9099054
js date.js
var lh_D=new Date();
var lh_yy=lh_D.getFullYear();
var lh_mm=lh_D.getMonth()+1;
var lh_dd=lh_D.getDate();
var lh_ww=lh_D.getDay();
if (lh_ww==0) lh_ww="星期日";
if (lh_ww==1) lh_ww="星期一";
if (lh_w
www.eeworm.com/read/184426/9100828
js html.js
/*
* GContact / PAUL Grégory
*
* In this file are general functions to update the view (html)
*/
/*
* Debug information
* If true and on big xml response (= lot of results), the browser can spe
www.eeworm.com/read/184426/9100831
js verif.js
/*
* Verify if fields are not empty
* @param fields array to verify
*/
function verifyNotEmpty(fields) {
for (var i = 0; i < fields.length; i++) {
if (document.getElementById(fields[i]).value.l
www.eeworm.com/read/184426/9100833
js actionscontact.js
/*
* Verify mandatory field and request (or not) PHP to update contacts
* This function use, for each contact, the function modifyContact().
*/
function modifyContacts() {
var zoneContact = docum
www.eeworm.com/read/184426/9100836
js actions.js
/*
* GContact / PAUL Grégory
*
* In this file are functions to interact with actions (PHP)
*/
/*
* Request PHP with searched terms
* @param terms to search
*/
function askSearch(terms) {
var
www.eeworm.com/read/184426/9100838
js htmlperson.js
/*
* GContact / PAUL Grégory
*
* In this file are functions relative to persons to update the view (html)
*/
/*
* Show / hide user details
* @param event coming from the link on persons list
www.eeworm.com/read/184426/9100840
js dynamiccombo.js
/*
* GContact / PAUL Grégory
*
* This file manages dynamics list (like google suggest) used for contact type and address title.
*/
var dynamicList;
var dynamicInput;
var dynamicNextInput;
/*
*
www.eeworm.com/read/184426/9100842
js htmlmailinglist.js
/*
* GContact / PAUL Grégory
*
* In this file are functions relative to mailing-lists to update the view (html)
*/
/*
* Get the form to create a new mailing-list
*/
function getNewMailingListFo