- 浏览: 545 次
- 性别:
- 来自: 北京
最新评论
文章列表
(function($){
$.fn.selectbox = function(){
//用变量idm存储select的id或name
var idm = $(this).attr("id") || $(this).attr("name");
if($("#" + idm + "div").length <= 0){//判断动态创建的div是否已经存在,如果不存在则创建
var divHtml = "<div style='display:none ...