/**
*
* Created by James on 15/11/29.
*/
function insert_warning_window(element, content) {
// 展出警告框
element.before(
'
' +
'' +
content +
'
');
// 3秒后自动关闭
setTimeout(function() {
$('#warning_window_close_btn').click();
}, 3000);
}
$.fn.hasAttr = function(name) {
return this.attr(name) !== undefined;
};