<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[计算机  &gt; 硬件  &gt; 维修与服务  - FF87论坛!]]></title>
<link><![CDATA[list.php?mode=a&area_id=1-15_8_3]]></link>
<description><![CDATA[该标签仍可细分：]]></description>
<copyright>(c) 2012, 162100.com. All rights reserved.</copyright>
<generator>162100.com</generator>
<image>
  <url><![CDATA[inc/css/a/area_logo_1-15.gif]]></url>
  <title><![CDATA[计算机  &gt; 硬件  &gt; 维修与服务  - FF87论坛!]]></title>
  <link><![CDATA[list.php?mode=a&area_id=1-15_8_3]]></link>
</image>
<item>
  <title><![CDATA[win7-10取消关闭 打开此类文件总是询问]]></title>
  <description><![CDATA[<span>1.首先打开组策略(开始–&gt;运行对话框–&gt;输入gpedit.msc)用户配置–&gt;管理模板–&gt;windows组件–&gt;附件管理器–&gt;双击中等危险文件类型包含列表.<br><span>2.选择已启用–&gt;指定中等危险扩展名里输入.exe OK,大功告成。</span></span>]]></description>
  <category><![CDATA[]]></category>
  <link><![CDATA[article.php?mode=a&id=1739]]></link>
  <author><![CDATA[hy58]]></author>
  <pubDate><![CDATA[Mon, 08 Jan 2018 17:53:38 +0800]]></pubDate>
</item>
<item>
  <title><![CDATA[弹出窗口代码及生成器]]></title>
  <description><![CDATA[<font color="black" size="2">弹出窗口代码编写方法</font><br><font color="black" size="2"></font><hr><font color="#ff9900" size="2"><span style="text-align:left"><font size="2"><font color="black">方法一：<br>步骤1：弹出窗口代码</font><font color="#99cc00"><br></font><font color="black">&lt;script language=&quot;JavaScript&quot;&gt;<br>&lt;!--<br>function popUp() {<br>props=window.open(&#039;http://xuhui-</font></font><font color="black" size="2">8491.blog.163.com/&#039;,&#039;xuhui&#039;,&#039;width=600,height=450,top=50,left=50,toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=</font><font color="black"><font size="2">0, resizable=0&#039;);<br>}<br>--&gt;<br>&lt;/script&gt;<br>步骤2：打开窗口方式<br>单击按钮弹出：<br>&lt;input type=button value=&quot;单击按钮弹出窗口&quot; onClick=&quot;javascript:popUp()&quot;&gt;<br>单击链接弹出：<br>&lt;a href=&quot;javascript:popUp()&quot;&gt;单击链接弹出窗口&lt;/a&gt;<br>自动弹出：<br>&lt;body onLoad=&quot;javascript:popUp()&quot;&gt;<br>步骤3：合并两处代码。如，<br>&lt;script language=&quot;JavaScript&quot;&gt;<br>&lt;!--<br>function popUp() {<br>props=window.open(&#039;http://xuhui-</font><font size="2">8491.blog.163.com/&#039;,&#039;xuhui&#039;,&#039;width=600,height=450,top=50,left=50,toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=</font></font><font color="black" size="2">0, resizable=0&#039;);<br>}<br>--&gt;<br>&lt;/script&gt;<br>&lt;input type=button value=&quot;单击按钮弹出窗口&quot; onClick=&quot;javascript:popUp()&quot;&gt;</font></span><font size="2"><span style="text-align:left"><br><font color="black">方法二：<br>单击按钮弹出： <br>&lt;input type=button value=&quot;点击按钮弹出窗口&quot; onClick=&quot;window.open(&#039;http://xuhui-8491.blog.163.com/&#039;,&#039;&#039;,&#039;width=600, </font></span></font><br><font color="black"><font size="2">height=450&#039;)&quot;&gt;&nbsp;&nbsp; 或&nbsp;&nbsp;&nbsp; <br>&lt;button onclick=&quot;window.open(&#039;http://xuhui-8491.blog.163.com/&#039;,&#039;&#039;,&#039;width=600, height=450&#039;)&quot;&gt;点击按钮弹出窗口&lt;/button&gt; <br>单击文字弹出：<br>&lt;Span onclick=&quot;window.open(&#039;http://xuhui-8491.blog.163.com/&#039;,&#039;&#039;,&#039;width=600, height=450&#039;)&quot;&gt;点击此处弹出窗口&lt;/Span&gt;<br>自动弹出：<br>&lt;script&gt;window.open(&#039;http://xuhui-8491.blog.163.com/&#039;,&#039;&#039;,&#039;width=600, height=450&#039;)&lt;/script&gt;</font> </font><br><span style="text-align:left"><font color="black"><font size="2">代码格式：<br>&lt;script language=&quot;JavaScript&quot;&gt;<br>&lt;!--<br>弹窗命令 (&#039;弹窗网址&#039;,&#039;窗口名&#039;,&#039;参数,…,参数&#039;);<br>--&gt;<br>&lt;/script&gt;<br>window.open&nbsp;&nbsp;&nbsp; 弹窗命令&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br></font><font size="2">http://xuhui-8491.blog.163.com/</font></font><font color="black" size="2">&nbsp;&nbsp;&nbsp; 弹窗网址<br>xuhui&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 窗口名，非必须，可用空&#039;&#039;代替</font></span><br><span style="text-align:left"><font color="black" size="2">相关参数：以下缺省时为默认值<br>height=窗口高度，&nbsp; &nbsp; 默认为100%<br>width=窗口宽度，&nbsp;&nbsp; &nbsp; 默认为100%<br>top=窗口顶部距离，&nbsp; 默认为0<br>left=窗口左边距离， &nbsp;默认为0<br>toolbar=工具栏，&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;默认0或no为隐藏，1或yes为显示<br>menubar=菜单栏，&nbsp;&nbsp;&nbsp; 默认0或no为隐藏，1或yes为显示<br>scrollbars=滚动栏， &nbsp;默认0或no为隐藏，1或yes为显示<br>location=地址栏，&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;默认0或no为隐藏，1或yes为显示<br>status=状态栏，&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;默认0或no为隐藏，1或yes为显示<br>resizable=改变窗口大小， 默认0或no为禁止，1或yes为允许<br>实例：自动弹窗<br>&lt;script language=&quot;JavaScript&quot;&gt; <br>window.open (&#039;http://www.107000.com&#039;, &#039;kvgo&#039;, &#039;height=420, width=600, top=0, left=0, toolbar=no, menubar=no, </font></span><br><span style="text-align:left"><font color="black" size="2">&nbsp;&nbsp; scrollbars=no, resizable=yes, location=no, status=no&#039;);<br>&nbsp;&nbsp; &lt;/script&gt;</font></span></font><br><font color="#ff9900" size="2"></font><hr><font color="#ff9900" size="2"><br><span style="text-align:center"><font size="2"><a href="http://www.7880.com/Info/Article-689e3a00.html" target="_blank" rel="nofollow"><font color="#ff9900">Flash弹窗生成器</font></a>&nbsp;</font>&nbsp;<br><font size="2">地址： </font><a href="http://www.7880.com/Upload/2005-09/200592612914819.swf" target="_blank" rel="nofollow"><font size="2">http://www.7880.com/Upload/2005-09/200592612914819.swf</font></a><font size="2">&nbsp;&nbsp;&nbsp;</font></span><br><span style="text-align:center"><font size="2"><font color="#ff9900">在线弹窗生成器与代码</font>&nbsp;&nbsp;<br></font><a href="http://xuhui8491.svfree.net/工具/弹窗生成器1.htm" target="_blank" rel="nofollow"><font size="2">生成器1</font></a><font size="2">&nbsp;&nbsp;&nbsp; </font><a href="http://www.107000.com/T-Window/" target="_blank" rel="nofollow"><font size="2">生成器</font></a><font size="2">&nbsp;&nbsp;&nbsp; </font><a href="http://tool.liehuo.net/tool/OpenHtml.asp" target="_blank" rel="nofollow"><font size="2">生成器</font></a><font size="2">&nbsp;&nbsp; </font><a href="http://tool.aspxhome.com/windowopen.htm" target="_blank" rel="nofollow"><font size="2">生成器</font></a><font size="2">&nbsp;&nbsp;&nbsp; 生成器&nbsp;&nbsp;生成器&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;<br></font><a href="http://xuhui8491.svfree.net/工具/弹窗生成器2.htm" target="_blank" rel="nofollow"><font size="2">生成器2</font></a><font size="2">&nbsp;&nbsp; </font><a href="http://www.zzsky.cn/tool/openwindows/" target="_blank" rel="nofollow"><font size="2">生成器</font></a><font size="2">&nbsp;&nbsp; </font><a href="http://tool.alixixi.com/openwin/" target="_blank" rel="nofollow"><font size="2">生成器</font></a><font size="2">&nbsp;&nbsp; </font><a href="http://tool.liehuo.net/tool/OpenWindows.asp" target="_blank" rel="nofollow"><font size="2">生成器</font></a><font size="2">&nbsp;&nbsp; </font><a href="http://www.knowsky.com/tools/OpenWindows.asp" target="_blank" rel="nofollow"><font size="2">生成器</font></a><font size="2">&nbsp;&nbsp;生成器&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;<br>&nbsp;&nbsp; &nbsp;</font><a href="http://js.alixixi.com/read_81535_166.html" target="_blank" rel="nofollow"><font size="2">代码</font></a><font size="2">&nbsp;&nbsp;&nbsp;</font><a href=http://www.alixixi.com/ePrint.asp?from=dev&amp;id=81535 target="_blank" rel="nofollow"><font size="2">代码</font></a><font size="2">&nbsp;&nbsp;&nbsp;</font><a href="http://www.newxing.com/Tech/WebDevelop/JavaScript/497.html" target="_blank" rel="nofollow"><font size="2">代码</font></a><font size="2">&nbsp;&nbsp;代码&nbsp;&nbsp;代码&nbsp;/&nbsp;</font><a href="http://webcenter.hit.edu.cn/articles/2011/03-22/03154420.htm" target="_blank" rel="nofollow"><font size="2">代码</font></a><font size="2">&nbsp;&nbsp;&nbsp;</font><a href="http://tutu.spaces.eepw.com.cn/articles/article/item/70198" target="_blank" rel="nofollow"><font size="2">代码</font></a><font size="2">&nbsp;&nbsp;&nbsp;</font><a href="http://blog.csdn.net/xiangyang336/article/details/2065445" target="_blank" rel="nofollow"><font size="2">代码</font></a><font size="2">&nbsp;&nbsp;代码&nbsp;&nbsp;&nbsp;代码&nbsp;&nbsp; </font></span><br><span style="text-align:center"><font size="2"><a href=http://pic.qnpic.com/r.jsp?fn=//xuhui8491/-4ee3-7801-8fd0-884c.txt target="_blank" rel="nofollow">代码测试工具</a>&nbsp;</font>&nbsp;</span></font><br>]]></description>
  <category><![CDATA[]]></category>
  <link><![CDATA[article.php?mode=a&id=987]]></link>
  <author><![CDATA[zyc]]></author>
  <pubDate><![CDATA[Sun, 07 Jun 2015 20:59:15 +0800]]></pubDate>
</item>
<item>
  <title><![CDATA[键盘上W键失灵的解决办法]]></title>
  <description><![CDATA[今天中午,在游戏里和人聊天打汉字时，按下W键居然失灵了，开始怀疑是键盘坏了，但发现但是按住SHIFT键,再按W键却能输入字符,看来不是键盘的问题,仔细一想我以前遇到过这种情况，于是乎我就按照以前解决的方法按下了Alt+W，这个问题就解决了，到网上一查，原来软件冲突搞的，而且是麻花藤的企鹅搞的，我找了资料自己写这篇博文，解决这种软件冲突问题。<br>运行QQ后,找到那个系统设置,点击左边的热键,如下图：<br><br><img width="676" height="486" src="http://ww3.sinaimg.cn/large/ab63d796jw1e6jyo6ws92j20is0didha.jpg"><br><br>里面有个语输入的快捷键, 默认是Alt+W, 点击这里随便修改一下, 然后保存,这时候你会发现,键盘W又行了。可以使用了！]]></description>
  <category><![CDATA[]]></category>
  <link><![CDATA[article.php?mode=a&id=986]]></link>
  <author><![CDATA[zyc]]></author>
  <pubDate><![CDATA[Sun, 07 Jun 2015 20:42:35 +0800]]></pubDate>
</item>
</channel>
</rss>