js common functions
show
- 自由
- 字符
- 数字
<script> <br>/*Remove spaces and return the length of the string*/ <br>var str = $("#str" ).html(); <br>var ss = str.replace(/s/g,""); <br>document.write(ss.length+"Return the length of the string</br>"); <br>var indexo =ss .indexOf("li"); <br>document.write(indexo+"Return the position where li first appears</br>"); <br>var srchref = ss.link("http://www.w3cschool.cc"); <br>document.write(srchref+"Add link</br>") <br>var mud = ss.match("li"); <br>document.write(mud+"Return the string that exists, return null</br>" ) <br>var query = ss.charAt(4); <br>document.write(query+"Return the string with the specified subscript</br>") <br>var con = ss.concat("Hahaha"); <br>document.write (con+ " " +"Concatenate two strings</br>"); <br>var sea =ss.search("li"); <br>document.write(sea+"Return the subscript of the string exists, does not exist Return -1</br>") <br>var sli = ss.slice(1,4); <br>document.write(sli+"Intercept and return the string</br>") <br> $(document).ready( function(){ <br>/* $(".submin").click(function(){ <br>$("#str").toggle();toggle hidden <br>toggle(function(){},function(){} ); <br>Single show and hide show(),hide(); <br>Get the matching first click to execute the first function and the second click to execute the second function <br>})*/ <br>/* $(". submin").click(function(){ <br>$("#str").fadeToggle(1500); <br>Separate hiding and display fadeOut() fadeIn() <br>Slow hiding and display are similar to the usage of the toggle() function <br>} )*/ <br>/* $(".submin").click(function(){ <br>$("#str").slideToggle(1500); <br>Individual sliding up and down to hide and display slideDown(), slideUp() <br>Up and down The usage of sliding hidden switching is similar to the fadeToggle() function <br>})*/ <br>/* $(".submin").click(function(){ <br>$(".stringname").animate({left:'250px' , opacity:'0.5',height:'150px', width:'150px'},1500); <br>animation <br>});*/ <br>/* $(".ClassNameToBeRemoved").click(function(){ <br>$ (".stringname").slideDown(5000); <br>Slide down the panel! <br>}); <br> $(".submin").click(function(){ <br> $(".stringname").stop(); <br> Stop sliding the panel down <br> });*/ <br>/* text() - Set or return the text content of the selected element <br>html() - Set or return the content of the selected element (including HTML tags) <br>val() - Set or return the value of a form field <br>attr() method is used to get the attribute value. */ <br><br>/* $("#str").click(function(){ <br> alert($("#stringname").attr("class")); <br>});*/ <br>/* append( ) - insert content at the end of the selected element value <br>prepend() - insert content at the beginning of the selected element value <br>after() - insert content after the selected element border <br>before() - insert before the selected element border Content*/ <br>/* $("#str").click(function(){ <br> $("#stringname").append("<span>Compression</span>"); <br>}); <br> $("#str").click(function(){ <br> $("#stringname").prepend("<span>Dema</span>"); <br>}); <br>$("#str ").click(function(){ <br> $("#stringname").after("<span>Timo</span>"); <br>}); <br>$("#str").click( function(){ <br> $("#stringname").before("<span>Glory</span>"); <br>});*/ <br><br>/* remove() - Remove the selected element (and Sub-element) <br>empty() - Remove sub-elements from selected elements*/ <br>/* $("#submin").click(function(){ <br> $("#stringname").remove(); <br>} );*/ <br>/* $("#submin").click(function(){ <br> $("#stringname").empty(); <br>});*/ <br>}); <br>//.append( i); Append after the element value <br>//queryarryl.find("a"); Return all sub-elements under queryarryl that are a; <br>//on() add event; <br>//index(this); Return the current element subscript <br>//queryi.eq(index).removeClass("active").hide(); Delete the class style and hide it according to the subscript returned by index <br><br><br>$(function(){ <br>var queryarryl = $(".arrayl" ); <br>var querya = queryarryl.find("a"); <br>var queryem = querya.find("em"); <br>var queryi = querya.find("i"); <br>queryi.hide(); <br>queryem .on('click',function(){ <br>var index = queryem.index(this); <br>if(queryi.hasClass("active")){ <br>queryi.eq(index).removeClass("active"). hide(); <br>}else{ <br>queryi.eq(index).addClass("active").show().append("qq"); <br>} <br><br>}); <br>var querytitle=$(".title "); <br>var titleli = querytitle.find("li") <br>titleli.on('click',function(){ <br>var index = titleli.index(this); <br>queryarryl.hide(); <br>titleli.removeClass ("active") <br>titleli.eq(index).addClass("active"); <br>queryarryl.eq(index).show(); <br>}); <br><br>}) <br>//Execute event real-time monitoring when input changes <br><body> <br><div class="imges"> <br><ul> <br><input type="text" id="idName"/> <br></ul> <br></div> <br><br></body> <br><script src="js/jquery-1.7.2.min.js"></script>
<script> <br>$(function(){ <br>$("# idName").on("input propertychange",function(){ <br>alert("changed"); <br>}) <br>}); <br>/*Jquery needs to bind events when splicing html statements, which cannot be done in the spliced statements. If you add an in-line binding event, it will not be clickable. At this time, you can use this method to get the div of the parent class or go to the in-line id*/ <br> $("#sureWin").on("click","#sectionid",function() { <br> $("#section").hide(); <br>}) <br>/*To be added later*/ <br></script>

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

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

This article series was rewritten in mid 2017 with up-to-date information and fresh examples. In this JSON example, we will look at how we can store simple values in a file using JSON format. Using the key-value pair notation, we can store any kind

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig
