摘要:
1.肯定是先配hosts,例如我本机配了www.test.com2.在conf\extra\httpd-vhosts.conf中配置: ServerAdmin webmaster@dummy-host2.localhost ServerName www.test.com ProxyRequests off Order deny,allow Allow from all ProxyPass / http://127.0.0.1:1337/ ProxyPassReverse / http://127.0.0.1:1337/3.用... 阅读全文
摘要:
前些天去面试被问道怎么不使用js实现点击radio旁边的文字选中radio。当时比较急没想出来。今天有空搞一搞。把radio设置成inline-block,然后设置radio大小再在里面放上文字不就行了。本来想在里面放文字但发现不行。所以就用绝对定位把文字放在里面。再把文字设置在radio的下一层就行了。小demo(火狐):<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head> <meta http-equiv="Content-Type" c 阅读全文