自编mjfn.js 前端框架说明_html/css_WEB-ITnose
注意:本文档的所有权归下面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选择器的格式
可以对取出的元素进行筛选,因此就诞生了:
MjFn('.className').first(); //内的第一个元素MjFn('.className').end(); //内的最后一个元素MjFn('.className').num(num); //传入的参数为这些内容内的第几个
css方法:传入style,两种形式
MjFn('.className').css('background-color','#ABC'); //传入两个参数MjFn('.className').css({ 'background-color':'#ABC', 'border-radius':'10px', 'height':'50px', }); //传入一个json对象
removeClass / addClass / replaceClass (添加、删除和替代节点的class)
MjFn('.className').addClass('className');MjFn('.className').removeClass('className');MjFn('.className').replaceClass('className');
getClass:获取元素类名
MjFn('.className').getClass();
可以清空html标签内的所有子节点(clear)
MjFn('.className').clear();
清空这个节点(包括其子节点)
MjFn('.className').remove();
返回可见高度:(分为元素和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]是高
addHTML:为元素添加子节点
MjFn('.className').addHTML('<a>我是子节点</a>');
替换和添加内容(chanText、addText)
强烈建议添加内容使用这个,而不是addHTML:这两个方法在添加内容之前,会对html代码做出转译!对其不执行html处理,把它当成字符串输出。
MjFn('.className').chanText(str); //替换字符串MjFn('.className').addText(str); //在原有的基础上添加内容
click方法:点击事件
MjFn('.className').click(function(e) { //e为点击事件! expression });
Time对象:获取事件
MjFn().Time.DateFac(); //统一工厂方法:DateFac方法 [几年几月几号,几时几分几秒]
pagination方法:传入URL、本页页数、总页数(>7页显示7页,<7页显示total)
MjFn('#page').pagination('URL', 5, 12); //下面附图,配合framework.css工作效果更佳!
框架配合css效果图
下载地址:https://github.com/merjiezo/mjzframework

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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.

This article explains the HTML5 <time> 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
