Hongmu Notes
Home Language Notes jquery selector
Language Notes JavaScript

jquery selector

jquery selector

When elements are at the same level – for example, in a scenario where you click on the corresponding <li> tag – the <div> tag associated with that same <li> tag will be displayed.

html code:

<ul id="open_list">
	<li class="product_Level" data-fid="1">
		<a>云服务器</a>
	</li>
	<div data-id="1" class="list_nome open_list_item">
		<li class="products-secondary">
			<div class="product_second  ">
				<a class="text-white" href="/cart?fid=1&gid=1">西南-绵阳电信</a>
			</div>
		</li>
		<li class="products-secondary">
			<div class="product_second  ">
				<a class="text-white" href="/cart?fid=1&gid=2">西南-西云高防&amp;BGP</a>
			</div>
		</li>
		<li class="products-secondary">
			<div class="product_second  ">
				<a class="text-white" href="/cart?fid=1&gid=3">香港-精品CN2</a>
			</div>
		</li>
		<li class="products-secondary">
			<div class="product_second  ">
				<a class="text-white" href="/cart?fid=1&gid=8">美国-CN2直连高防</a>
			</div>
		</li>
	</div>

	<li class="product_Level active " id="open" data-fid="2">
		<a>物理机</a>
	</li>
	<div data-id="2" class="list_nome1 open_list_item">
		<li class="products-secondary">
			<div class="product_second  ">
				<a class="text-white" href="/cart?fid=2&gid=4">韩国CN2</a>
			</div>
		</li>
		<li class="products-secondary">
			<div class="product_second  ">
				<a class="text-white" href="/cart?fid=2&gid=5">枣庄高防&amp;amp;双线</a>
			</div>
		</li>
		<li class="products-secondary">
			<div class="product_second  ">
				<a class="text-white" href="/cart?fid=2&gid=6">枣庄高防&amp;三线</a>
			</div>
		</li>
		<li class="products-secondary">
			<div class="product_second active ">
				<a class="text-white" href="/cart?fid=2&gid=9">香港CN2直连活动机</a>
			</div>
		</li>
	</div>
</ul>

When using jQuery to implement a click-to-show or click-to-hide effect, selectors come into play.

jquery:

$('#open_list .open_list_item[data-id='+ $(this).attr('data-fid') +']')

Place this element here; click on `li`, and then you can easily select all `div` elements at the same level as `li`.

[attribute]$("[href]")All elements with the `href` attribute
[attribute=value]$("[href='#']")Elements whose `href` attribute value equals "#".
[attribute!=value]$("[href!='#']")Elements whose `href` attribute value is not equal to "#".
[attribute$=value]$("[href$='.jpg']")The value of all `href` attributes contains elements ending in ".jpg".
微信赞赏

WeChat

支付宝赞赏

Alipay

✍️ Author: Hong Mu

webmaster · Thanks for reading, stay tuned for more exciting content

Author homepage View home page →

Related articles

js move the mouse up to modify the style attribute

js move the mouse up to modify the style attribute Language Notes JavaScript

When the mouse hovers over the element, the color changes to red; when the mouse leaves the element, the color changes to black. To retrieve an element by its ID: `document.getElementById()`; Event handler for mouse hover: `onmouseover`; Event handler for mouse leave: `onmouseout`.<!DOCTYPE html><html lang= "en">...
👁 130

Recommended reading

Mini Program Template Download Website – Template ID: 28279,0548

Mini Program Template Download Website – Template ID: 28279,0548 Practical Collection Yiyou template

An EYO CMS website template designed for downloading mini-program template resources. This template features a user-friendly interface for displaying mini-program templates, resource categories, download services, and user reviews, helping template resource platforms attract developers online. Template Display | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for EYO CMS | EYO CMS (Eyo...
👁 33
(PC+WAP) Green Chemical Materials Enterprise Website – pbootCMS Template; Download Source Code for a Marketing-Oriented Chemical, Environmental Protection and Energy Website – 0542

(PC+WAP) Green Chemical Materials Enterprise Website – pbootCMS Template; Download Source Code for a Marketing-Oriented Chemical, Environmental Protection and Energy Website – 0542 Practical Collection pbootcms Template

A PbootCMS-based corporate website template designed for the chemical materials and renewable energy industries, featuring a green-themed design and compatibility with both PC and mobile devices. Its design emphasizes sustainability and technology, making it ideal for showcasing chemical products, energy solutions, and corporate social responsibility initiatives. This template helps chemical companies build a green brand image online and attract customers. Template Display | Installation Instructions | Website Backend: /admin.php | Username: admin | Password: adm...
👁 33
`get_post_meta` function for WordPress

`get_post_meta` function for WordPress Program Notes wordpress

`get_post_meta()` is a WordPress function used to retrieve custom fields for posts or pages; it is also known as "metadata." Its function prototype is as follows: `get_post_meta(int $post_id, string $key = '',bool $single = false)参数说明:$post_id:...)`
👁 310
Industrial Outdoor Equipment Marketplace Template 0549

Industrial Outdoor Equipment Marketplace Template 0549 Practical Collection Yiyou template

This EyouCMS e-commerce template is ideal for the industrial and outdoor equipment industry. Its professional outdoor design style enables effective showcasing of industrial machinery, outdoor products, brand stories, and online purchasing capabilities. It helps industrial and outdoor brands establish an online e-commerce platform to attract professional customers. Template Preview | Installation Instructions | Website Backend: /login.php | Username: admin | Password: admin | Related Articles: Summary of Common Installation Issues for EyouCMS | EyouCMS...
👁 44
(Adaptive Mobile Version) Simple large-scale agricultural machinery website PBootCMS template; Download source code for a rice and corn harvester website – 0543

(Adaptive Mobile Version) Simple large-scale agricultural machinery website PBootCMS template; Download source code for a rice and corn harvester website – 0543 Practical Collection pbootcms Template

A simple and practical website template for large-scale agricultural machinery and rice/maize harvesters (PbootCMS), supporting mobile access. The design is practical and professional, ideal for showcasing large agricultural equipment and field operation case studies. It helps agricultural machinery companies showcase their products online and attract large farms and agricultural cooperatives. Template Display | Installation Instructions | Website Backend: /admin.php | Username: admin | Password: admin | Extraction Password: ww...
👁 44
WordPress `update_post_meta` function

WordPress `update_post_meta` function Program Notes wordpress

`update_post_meta()` is a WordPress function used to update custom fields for posts or pages; it is also known as "metadata." Its function prototype is as follows: `update_post_meta(int $post_id, string $meta_key, mixed $meta_value, mixed $prev...)`
👁 198