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
Table of contents Causes of MySQL Table Fragmenta...
We have many servers that are often interfered wi...
1. Introduction ● Random writing will cause the h...
Windows Server 2008 server automatically restarts...
The META tag, commonly referred to as the tag, is...
background Today, I was browsing CodePen and saw ...
Note When developing an article display list inte...
Create a Directory cd /usr/local/docker/ mkdir je...
Preface In the actual use of the database, we oft...
Here's a solution to the problem where margin...
public function json_product_list($where, $order)...
dl:Definition list Definition List dt:Definition t...
Table of contents 1. Database bottleneck 2. Sub-l...
When nginx receives a request, it will first matc...
Recently, some friends said that after installing...