摘要:
from selenium import webdriver options=webdriver.FirefoxProfile() options.set_preference(‘permissions.default.image’,2) b=webdriver.Firefox(options) b 阅读全文
摘要:
//判断字符串是否为数字和字母的组合 function checkRate(nubmer) { var re = /^[0-9a-zA-Z]*$/g; //判断字符串是否为数字和字母组合 //判断正整数 /^[1-9]+[0-9]*]*$/ if (!re.test(nubmer)) { retur 阅读全文