Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我们可以使用$(document).on(event, selector, function). 但是我怎样才能在这些元素上做一些 jQuery。
$(document).on(event, selector, function)
说,我需要添加datepicker一些input[type=date]. 我该怎么做?
datepicker
input[type=date]
- - 更新 - - -
我的外部模板应该被放入
<div id="form-output"> </div>
但即使表单显示在浏览器中,模板中的 DOM 也不在上面的 div 中。如何使用 jQuery 访问这些 DOM?
jsRender 做所有事情都是异步的。它也没有任何类型的回调函数,所以创建你自己的:
$.when( { dojsRenderStuff } ).done( function(){ $("input[type=date]").datepicker(); } );
http://api.jquery.com/jQuery.when/