d3.js资源

查看更多 →

three.js资源

查看更多 →

Backbone.js资源

查看更多 →

针对IE的有条件注释详解

IE的有条件注释是一种专有的(因此是非标准的)、对常规(X)HTML注释的Miscrosoft扩展。顾名思义,有条件注释使你能够根据条件(比
查看更多 →

JS添加国家下拉表单

Download Source Code from attachment, unzip and get the .js file Put this code between your and section: <script src="countries3.js" type="text/javascript"></script> Put this code between your and section: Select Country: <select onchange="print_state('state',this.selectedIndex);" id="country" name = "country"></select> City/District/State: <select name ="state" id = "state"></select> <script language="javascript">print_country("country");</script> Please note that, we are using two select tags, which are actual drop-down boxes. Here I’ve chosen “country
查看更多 →