126邮箱的格式

自己写的勿喷:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>don1</title>
        <meta name="author" content="gy" />
        <!-- Date: 2017-02-22 -->
        <script src="jQuery1.11.1.js"></script>
        <script type="text/javascript">
            $(function() {
                $("li").each(function() {
                    $(this).children().eq(1).focus(function() {
                        //alert($(this).children().eq(2));
                        $(this).next().css("background-color", "red");
                    }).blur(function() {
                        $(this).next().css("background-color", "");
                    });
                });

            });
            //.css("background-color","red");
        </script>
    </head>
    <body>
        <ul>
            <li>
                <label>用户名:</label>
                <input />
                <p>
                    变色
                </p>
            </li>
            <li>
                <label>密码:</label>
                <input />
                <p>
                    变色
                </p>
            </li>
            <li>
                <label>等等:</label>
                <input/>
                <p>
                    变色
                </p>
            </li>
            <li>
                <label>等等:</label>
                <input/>
                <p>
                    变色
                </p>
            </li>
        </ul>
    </body>
</html>
时间: 2024-10-22 08:56:29

126邮箱的格式的相关文章

c# winform 程序用126邮箱发邮件

代码如下: private void button1_Click(object sender, EventArgs e) { string strTitle = "alert! We have not receive new data from mera over 20 mins"; try { SmtpClient client = new SmtpClient("smtp.126.com", 25) { Credentials = new NetworkCred

Selenium登录126邮箱,定位不到账号输入框解决办法

用firebug去定位126邮箱登录页面的账号密码输入框,查看元素时发现ID每次都是变动的,不能用ID定位 使用xpath定位,发现每次定位都会失败,后来发现这个登录的账号密码输入框,是嵌套在表单iframe中,所以定位时,要先进入iframe里面才能正确定位 iframe/frame的定位方式有3种,一是通过ID,而是通过name,三是xpath 例如: switch_to_frame(id): switch_to_frame(name): 若是没有ID和name,那么只能通过xpath方式定

python2+selenium+mail,自动登录126邮箱

在进行登录126邮箱时有几个坑,要完美避过可以看一下下文,直接上代码: #encoding = utf-8 from selenium import webdriverimport unittestimport timeclass login126(unittest.TestCase): def setUp(self): self.driver = webdriver.Chrome(executable_path = "chromedriver") def test_login(sel

python webdriver firefox 登录126邮箱,先添加联系人,然后进入首页发送邮件,带附件。

代码:#encoding=utf-8from selenium import webdriverfrom selenium.webdriver.common.keys import Keysfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.support.ui import WebDriverWaitfrom selenium.webdriver.support import expected_condition

【selenium+Python unittest】之发送邮箱时报错:smtplib.SMTPDataError、smtplib.SMTPAuthenticationError(例:126邮箱)

原代码如下: import smtplib from email.mime.text import MIMEText from email.header import Header #要发送的服务器 smtpserver = 'smtp.126.com' #要发送的邮箱用户名/密码 user = 'XXX@126.com' password = 'XXX' #发送的邮箱 sender = 'XXX@126.com' #接收的邮箱 receiver = 'XXX@qq.com' #发送邮箱主题 s

Python3实现126邮箱163邮箱SMTP发送邮件

Email起到提醒作用,当爬虫过程中遇到异常或者服务器遇到问题,可以通过Email及时向自己报告.发送邮件的协议是STMP,python内置对SMTP的支持,可以发送纯文本邮件.html邮件以及带附件的邮件. SMTP协议 首先了解SMTP(简单邮件传输协议),邮件传送代理程序使用SMTP协议来发送电邮到接收者的邮件服务器.SMTP协议只能用来发送邮件,不能用来接收邮件,而大多数的邮件发送服务器都是使用SMTP协议.SMTP协议的默认TCP端口号是25. 发送邮件之前的配置: 上面说了是使用SM

ofbiz 本地化及邮件设置126邮箱

ofibz登陆功能有通过电子邮件找会密码的功能,但找回密码功能需要配置一个发送email的邮箱账号和smtp服务器的配置,具体配置如下: 1:在ofbiz数据库的表product_store_email_setting中找到from_address字段,将该字段中值全部修改成配置的默认发送账号 2:在general.properties中配置smtp参数 # -- The default domainname used in the notification emails links # as

jenkins配置邮箱服务器(126邮箱)

安装Email Extension Plugin 安装过程容易失败,多试几次 一.开启126邮件的SMTP获取授权码 二.配置管理员邮件地址 三.设置邮件通知 四.点击Test Configuration成功之后会收到一封邮件 常见错误: 553 Mail from must equal authorized user jenkins location需要配置系统管理员地址和上面配置的邮箱地址相同,就是发送通知邮件的邮箱. 535 Error: authentication failed 检查邮

python webdriver 显示等待-自动登录126邮箱,添加联系人

脚本内容:#encoding=utf-8#author-夏晓旭from selenium import webdriverimport timefrom selenium.webdriver.support.ui import WebDriverWaitfrom selenium.webdriver.common.by import Byfrom selenium.common.exceptions import TimeoutException, NoSuchElementExceptioni