jQuery templates, how can I use inputs?
After this conversation I started wondering if it's possible to use that and apply to textboxes. I want something like that:
<script type="jquery/x-jquery-tmpl" id="contactTemplate" >
<d开发者_Go百科iv>
<input type="text" value= {{ = name }} />
<input type="text" value= {{ = phone }} />
<div>
</script>
<script type="text/javascript">
var contacts = { name: 'Scott Guthrie', phone: '31415' };
$(document).ready(function()
{
$('#contactTemplate').tmpl(contacts).appendTo('#contactContainer');
});
</script>
Sure thing:
<script type="jquery/x-jquery-tmpl" id="contactTemplate" >
<div>
<input type="text" value="${name}" />
<input type="text" value="${phone}" />
<div>
</script>
Here's an example: http://jsfiddle.net/Ca35T/
精彩评论