Beautification checkbox_html/css_WEB-ITnose in HTML page

WBOY
Release: 2016-06-24 11:49:13
Original
1378 people have browsed it

Many artists often use pictures instead of checkboxes to beautify the page when designing pages.

The html is as follows:

<div class="checklayout">	<div class="checkbox01">		<img src="../images/checkbox01_noclick.png" name="hobby" id="01">	</div><div class="checkword01">苹果</div>
Copy after login


How to get the value at this time?

jquery:

		var hobby; 		var obj = $("img[name='hobby']");		if ("../images/checkbox01_click.png" == obj.attr("src");) {			hobby = obj.attr("id");		}
Copy after login




My personal blog: http://blog.caicongyang.com;

My personal website: http://www.caicongyang.com;

My CSDN blog address:





source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!