小编Col*_*lin的帖子

在outlook签名中包含自己的html和css

编辑 我已经将html实现为签名,但我现在遇到的问题非常奇怪.

我有一个签名,每次我将它从outlook发送到web邮件服务outlook put标签在html中,并混乱所有的间距.我该如何解决这个问题.

我对Outlook签名有疑问.对于我的工作,我必须签名,以便它看起来更专业.我已经做了一个测试,看看我需要如何将它实现到签名的HTML中,但我无法弄明白.

这是Outlook生成的代码:

    <style>
<!--
 /* Font Definitions */
 @font-face
    {font-family:Calibri;
    panose-1:2 15 5 2 2 2 4 3 2 4;
    mso-font-charset:0;
    mso-generic-font-family:swiss;
    mso-font-pitch:variable;
    mso-font-signature:-520092929 1073786111 9 0 415 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
    {mso-style-unhide:no;
    mso-style-qformat:yes;
    mso-style-parent:"";
    margin:0cm;
    margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
p.MsoAutoSig, li.MsoAutoSig, div.MsoAutoSig
    {mso-style-priority:99;
    mso-style-link:"E-mailhandtekening Char";
    margin:0cm;
    margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times …
Run Code Online (Sandbox Code Playgroud)

html css outlook

12
推荐指数
1
解决办法
1万
查看次数

在IE5中将项目添加到<select>

生病只是问题第一个问题...为什么IE5你想知道,因为它在我工作的Windows CE设备上所以我限制使用IE5.我制作的应用程序使用了一个包含几个元素的网页.

我有两个文本字段和一个列表,或者<select> 我想将一个文本框的值传输到列表中.我已经在IE 10和Chrome中工作但是当我在设备上测试网页时它没有将textfield 2的值发送到列表中.任何人都可以帮我解决这个问题吗?

这是我的HTML代码:

 <tr>
                    <td>Locatie:</td>
                    <td><input type="text" id="one" onkeyup="CheckOne()" name="locatie" value="{locatie}" /></td>
                </tr>
                <tr>
                    <td>Bonregel:</td>
                    <td><input type="text" name="bonregel" id="two" onkeyup="CheckTwo(event)" /></td>
                </tr>
                <tr>
                    <td>Bonlijst:</td>
                    <td><select id="selectbox" multiple></select></td>
                </tr>
                <tr>
                    <td></td>
                    <td><input type="submit" value="Verzenden" id="sub" onclick="CheckContent()" /></td>
                </tr>
                <tr>
                    <td></td>
                    <td><input type="button" value="Velden Legen" id="reset" onclick="ClearFields()" /></td>
                </tr>
Run Code Online (Sandbox Code Playgroud)

然后我有我的javascript函数用于将数据添加到列表:

function AddToList(field) {
                // Create an Option Object
                var opt = document.createElement("option");
                document.getElementById("selectbox").options.add(opt);
                opt.text = document.getElementById("two").value;
                opt.value = document.getElementById("two").value;
            }

function CheckTwo(event) {
                var field = document.getElementById("two").value; …
Run Code Online (Sandbox Code Playgroud)

html javascript

5
推荐指数
1
解决办法
153
查看次数

标签 统计

html ×2

css ×1

javascript ×1

outlook ×1