09 2014 档案

摘要:KE.show({ id: 'txtMessage', imageUploadJson: '/ajax/Manager/keupload.ashx?ptype=news', fileManagerJson: '/ajax/Manager/kefilemanager.ashx?ptype=news'... 阅读全文
posted @ 2014-09-24 12:10 H辉 阅读(1373) 评论(0) 推荐(0) 编辑
摘要:获取select 的text值: $('#testSelect option:selected').text(); 获取select 的value值: $('#testSelect').val(); $("#testSelect' ").get(0).selectedIndex; //获取Selec 阅读全文
posted @ 2014-09-12 10:24 H辉 阅读(130) 评论(0) 推荐(0) 编辑
摘要:jQuery中each类似于javascript的for循环 但不同于for循环的是在each里面不能使用break结束循环,也不能使用continue来结束本次循环,想要实现类似的功能就只能用return,break 用return falsecontinue 用return ture 阅读全文
posted @ 2014-09-11 14:52 H辉 阅读(204) 评论(0) 推荐(0) 编辑