The property of the tag is called the element attribute, and the corresponding property of the DOM object in JS is called the DOM attribute. The DOM attribute name in JS is sometimes different from the original element property name. The ================================== Action element property ==================================//Returns an element that specifies the property value var txt1_val=$ ("#txt1"). attr ("value");//Change the DOM property value $ ("#txt1") by the DOM property name of the element. attr ({value: "Txt1_value", ClassName: "Txt1_class"});// The element property value is changed by specifying the element properties of $ ("#txt1"). attr ("Class", "Txt1_class2");//assigns a value to the specified element property, and returns the value $ ("#txt1") by the method that is bundled later. attr ("Class", function () {return "TXT1_CLASS3";}) Removes the specified element property $ ("#txt1"). Removeattr ("class");//================================== Modify the CSS class ========================== ========//adds a property value to a CSS class that is a class element attribute, you can add more than one space separating the following pairs of CSS class action functions can also fill in multiple CSS classes $ ("#txt1"). AddClass ("Txt1_class txt1_ Class2 ");//Determine if the CSS class already exists, return TRUE or False $ (" #txt1 "). Hasclass (" Txt1_class txt1_class2 ");//Remove the specified CSS class, separated by a space, and delete the element if none is specified all CSS classes $ (" # " Txt1 "). Removeclass (" Txt1_class ");//Determine if there is a CSS class, there is a delete, no add $ (" #txt1 "). Toggleclass (" Txt1_class ");// If you add this CSS class according to the back of the return, false delete this CSS class $ ("#txt1"). Toggleclass ("Txt1_class", false);//================================== Modifies the CSS property ==================================//returns the specified CSS style value $ ("#txt1 "). CSS (" color "), and//multiple styles are assigned $ (" #txt1 "). CSS ({color:" #ff0011 ", Background:" Blue "});//Assign a specified style to $ (" #txt1 ") at a time. CSS (" Color "," black "),//================================== width and height related ==================================//set the heights of the elements, No value returns the height of the element in pixels per $ ("#txt1"). Height (25);//sets the width of the element, no value returns the width of the element $ ("#txt1"). Width (150);//Gets the inner height of the element, excluding the border $ ("#txt1"). Innerheight ();//Gets the inner width of the element, excluding the variable width $ ("#txt1"). Innerwidth ();//Gets the outer height of the element, including the border $ ("#txt1"). Outerheight ();//Gets the outer width of the element, including the border $ ("#txt1"). Outerwidth ();//================================== Location related ==================================// Gets the offset position of the element relative to the window, returns two values, a top value, a left value var txt1_offset=$ ("#txt1"). offset (); var top=txt1_offset.top;var left=txt1_ offset.left;//returns the relative offset position relative to the parent element, returning two values a top, a leftvar txt1_position=$ ("#txt1"). Position (); var top=txt1_position.top; The Var left=txt1_position.left;//element has a vertical scrollbar, which starts from the 20th row of pixels down the overall content, and is displayed above the top of the ScrollBar Visual window//If no parameters, returns the vertex position above the visible window of the current scroll bar. Distance $ ("#div_outer") from the vertex above the overall content. scrolltop (20);//The element has a horizontal scrollbar, which starts at the 20th column of pixels to the left of the overall content, and is displayed in the left-hand vertex of the ScrollBar Visual window//without parameters, Returns the position of the left vertex of the current ScrollBar visual window and the distance from the left end vertex of the overall content $ ("#div_outer"). ScRollleft (20);
jquery gets and changes element attribute values