Table of Contents
本框架使用链式调用,仅仅只有以下方法不支持。
Home Web Front-end HTML Tutorial 自编mjfn.js 前端框架说明_html/css_WEB-ITnose

自编mjfn.js 前端框架说明_html/css_WEB-ITnose

Jun 21, 2016 am 08:52 AM

注意:本文档的所有权归下面Github的拥有者所有!欢迎大家提出问题!

用户注意:选择器仅仅只可以在前端使用,此框架不建议在后端:node.js内使用。本框架效仿jquery框架,但相比jquery更加轻量,会做一些持续的更新!并且添加了一些通用的模块,大大方便前端工程师的编写。刚刚开始编,现在就添加了选择器和部分功能,以后功能会越来越丰富。对自己有要求的同学也可以研究研究源码,比jquery要好懂很多(因为复杂度完全不同,编出jquery的简直是大神!)本框架暂不适配IE8!!!!

本框架使用链式调用,仅仅只有以下方法不支持。

remove/getClass/ele_W_H/body_W_H/click/pagination/Time、arrChan、strChan、obj、对象下的方法/和抛错方法

引入本框架只运用一个全局变量:MjFn变量,在变量内有的原型方法内挂载着所有的操作方法。并且运用无new创建,因此,如果要使用,请在<script>标签内嵌入以下的代码:</script>

MjFn('.className');       //example,括号内的内容是css选择器的格式
Copy after login

可以对取出的元素进行筛选,因此就诞生了:

MjFn('.className').first();         //内的第一个元素MjFn('.className').end();           //内的最后一个元素MjFn('.className').num(num);        //传入的参数为这些内容内的第几个
Copy after login

css方法:传入style,两种形式

MjFn('.className').css('background-color','#ABC');      //传入两个参数MjFn('.className').css({    'background-color':'#ABC',    'border-radius':'10px',    'height':'50px',    });     //传入一个json对象
Copy after login

removeClass / addClass / replaceClass (添加、删除和替代节点的class)

MjFn('.className').addClass('className');MjFn('.className').removeClass('className');MjFn('.className').replaceClass('className');
Copy after login

getClass:获取元素类名

MjFn('.className').getClass();
Copy after login

可以清空html标签内的所有子节点(clear)

MjFn('.className').clear();
Copy after login

清空这个节点(包括其子节点)

MjFn('.className').remove();
Copy after login

返回可见高度:(分为元素和body两个) the end of invocation chaining

MjFn('.className').ele_W_H();       //元素可见的宽和高,返回一个array,arr[0]是宽,arr[1]是高MjFn('.className').body_W_H();      //页面可见的宽和高,返回一个array,arr[0]是宽,arr[1]是高
Copy after login

addHTML:为元素添加子节点

MjFn('.className').addHTML('<a>我是子节点</a>');
Copy after login

替换和添加内容(chanText、addText)

强烈建议添加内容使用这个,而不是addHTML:这两个方法在添加内容之前,会对html代码做出转译!对其不执行html处理,把它当成字符串输出。

MjFn('.className').chanText(str);       //替换字符串MjFn('.className').addText(str);        //在原有的基础上添加内容
Copy after login

click方法:点击事件

MjFn('.className').click(function(e) {      //e为点击事件!        expression    });
Copy after login

Time对象:获取事件

MjFn().Time.DateFac();      //统一工厂方法:DateFac方法  [几年几月几号,几时几分几秒]
Copy after login

pagination方法:传入URL、本页页数、总页数(>7页显示7页,<7页显示total)

MjFn('#page').pagination('URL', 5, 12);     //下面附图,配合framework.css工作效果更佳!
Copy after login

框架配合css效果图

下载地址:https://github.com/merjiezo/mjzframework

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles