js的常用方法

js 常用方法

modal框清楚缓存

$("#modal").click(function(){

//清除bootstrapValidator校验缓存

$(".lessonHourBase_validator").data('bootstrapValidator').resetForm();

//清除maodal缓存数据

//清除文本框

$("input[type='text']").val("");

//让下拉框中输入的文本值是下拉框中第一个option的文本值

$("#lesson_hour_type_div").find(".select2-chosen").html($("#lesson_hour_type option:first").text());

//清除radio,默认选择第一个radio

$(".addlesson_pointRadio input[type=radio]").eq(0).prop("checked", true)

//清除li表

$("#add_point").find("li").remove();

js清除数组中的值

pointArr = []

if(pointArr.length!=0){

pointArr.splice(0,pointArr.length)

}

js数组中添加元素

pointArr.push()

js滤空

$.trim();

});

json字符串转换成json对象

eval(jsonStr)

$.parseJSON(jsonStr)

json对象转换成json字符串

JSON.stringify(knowledgePointArray)

//获取下拉框中选择的元素

$("#select_id option:selected").val(); 

//获取被选中的radio

$(".addlesson_pointRadio input[type=radio]:checked").val()

//遍历列表 获取选取的列表的索引

$("#update_point li").each(function(index,item){

alert($(this).parent().in

你可能感兴趣的:(js的常用方法)