Home  >  Article  >  Web Front-end  >  js/jQuery object conversion (quick operation of dom elements)_javascript skills

js/jQuery object conversion (quick operation of dom elements)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:42:32914browse
Copy code The code is as follows:

// jquery object to js object
$('#search ')[0].checked=true;
// js object to jquery object
var obj = document.getElementById('search');
alert($(obj).checked);
Statement:
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