如何创建自定义选择选项

时间:2015-04-25 11:21:48

标签: jquery html select

如何创建类似的选择选项

http://www.awesomescreenshot.com/image/139417/4167005d094aaeef54ae2b2a25b64dfb

这是我的代码。

<select name="" id="">
<option value="">Public</option>
<option value="">Private</option>
<option value="">Only Me</option>
</select>

2 个答案:

答案 0 :(得分:0)

您可以使用引导程序和按钮下拉菜单 Queryable.Where

答案 1 :(得分:0)

看看这个 Here

function parent() {
}
parent.prototype.a =2;
parent.prototype.m = function() {
    return this.a++;
}

function child() {
    parent.call(this);
}
child.prototype = Object.create(parent.prototype);

var c = new child();
alert(child.prototype.m());   // 2
alert(child.prototype.m());   // 3
alert(c.m());                 // 4