js或者jquery清空文本框所有内容

jQjs或者jquery清空文本框所有内容
js或者jquery清空文本框所有内容
 

条件查询情况,条件中的input框的值;

$('.class').val() class选择器
$('#id').val() id选择器

<div id='shape'> 清空一样
a.$('#shape').html('');或者

b.$('#shape').empty();

c.$('#shape').append('');

JS

var create_time = document.getElementById('create_time');
create_time.value= '';