摘要:
$(":radio[name='actionCode'][value='" + obj. + "']").prop("checked", "checked"); 阅读全文
摘要:
function uploadClick(url) { var loadId = load(); var ajaxFormOption = { type: "POST", //提交方式 dataType: "json", //数据类型 url: url, //请求url success: function... 阅读全文
摘要:
//批量删除 function deleteAll(url) { var ids = new Array(); $("input[name='radio_name']").each(function () { var check = $(this).is(":checked"); if (check) { ids.push(... 阅读全文
摘要:
//单选,取消单选 function selected() { var flag = true; $("input[name='radio_name']").each(function () { var check = $(this).is(":checked"); if (!check) { flag = false; ... 阅读全文
摘要:
window.location.href = 'sms://' + 13764567708; window.location.href = 'tel://' + 47848454; ios中不可以使用此方法; 直接使用 <a href="tel:"> 阅读全文
摘要:
区别:attr() 返回值 属性; prop() 返回值 true false; 阅读全文
摘要:
/** * 时间戳转成日期 */ function getLocalTime(obj) { // var str = s.toString(); // str = str.substring(0, 10); // var time = new Date(parseInt(str) * 1000).toLocaleString().replace(/年|月/g, "-"... 阅读全文