Introduction to the use of data custom attributes in HTML and plug-in applications

Introduction to the use of data custom attributes in HTML and plug-in applications
You may often see some HTML with data attributes. These are custom attributes of HTML5. They can do a lot of things and are very convenient to call JS directly. Although they are attributes of HTML5, fortunately, jQuery is universal, so they can be used normally in basically all browsers, including lower versions of IE. Here is a brief introduction to how to use it:
1. Easy to use

Copy code
The code is as follows:

<div id="widget" data-text="123456"></div>


Copy code
The code is as follows:

$(function(){
var _widget = $("#widget").attr("data-text"); alert(_widget); //Because data-text="123456", it prints out 123456
})

2. Use with $.fn.extend to write plugins

Copy code
The code is as follows:

<div id="widget" data-widget-config="{effect:'click'}">This is the test area</div>


Copy code
The code is as follows:

//Plugin extension part
;(function($){
$.fn.extend({
Test:function(config){
/**
* @param effect effect
* config||{} When custom properties are passed in, the default value is not executed
*/
// Set default values
config=$.extend({
effect:'click',
},config||{});
var effect = config.effect;
var _text=config._text;
if(effect=='click'){
$(this).click(function(){
alert('this click');
})
}else if(effect=='mouseover'){
$(this).mouseover(function(){
alert("this is mouseover");
})
}
}
})
})(jQuery)


Copy code
The code is as follows:

//Calling part, the data attribute in HTML depends on this
$(function(){
var _widget = $("#widget").attr("data-widget-config");
// There are two ways to convert a string into a json object
var widgetConfigJSON = eval("("+_widget+")");
// var widgetConfigJSON = (new Function("return " + _widget))();
$("#widget").Test(widgetConfigJSON);
//Because the data attribute in HTML is data-widget-config="{effect:'click'}", the click event will be called here.
If data-widget-config="{effect:'mouseover'}", the event of mouse moving over is called})

<<:  Detailed explanation of various methods of Vue component communication

>>:  CSS3 flip card number sample code

Recommend

Methods for defragmenting and reclaiming space in MySQL tables

Table of contents Causes of MySQL Table Fragmenta...

How to set up remote access to a server by specifying an IP address in Windows

We have many servers that are often interfered wi...

Linux disk sequential writing and random writing methods

1. Introduction ● Random writing will cause the h...

Meta tags in simple terms

The META tag, commonly referred to as the tag, is...

JS uses clip-path to implement dynamic area clipping function

background Today, I was browsing CodePen and saw ...

Pure CSS to achieve click to expand and read the full text function

Note When developing an article display list inte...

Practical notes on installing Jenkins with docker-compose

Create a Directory cd /usr/local/docker/ mkdir je...

Solution to the ineffective margin of div nested in HTML

Here's a solution to the problem where margin...

getdata table table data join mysql method

public function json_product_list($where, $order)...

When is it appropriate to use dl, dt, and dd?

dl:Definition list Definition List dt:Definition t...

Summary of MySQL's commonly used database and table sharding solutions

Table of contents 1. Database bottleneck 2. Sub-l...

Detailed analysis of matching rules when Nginx processes requests

When nginx receives a request, it will first matc...

Solution to Linux CentOS 6.5 ifconfig cannot query IP

Recently, some friends said that after installing...