易截截图软件、单文件、免安装、纯绿色、仅160KB

HTML 框架 noresize="noresize" 作用

<html>
<frameset cols="50%,*,25%">
 
  <!-- 左边页面占50% 被固定住了 -->
  <frame src="/example/html/frame_a.html" noresize="noresize"
/>
  <frame src="/example/html/frame_b.html" />
  <frame src="/example/html/frame_c.html" />
 
</frameset>
</html>


相关文档:

Javascript 在 HTML 页面光标处输入字符

insertAtCurson 函数代两参数分别为对象和输入的字符
    function insertAtCursor(myField, myValue)
    { 
        if (document.selection)
        { 
         &nb ......

Javascript访问html页面的控件

访问控件的主要对象是:document对象。分别对应当前文档所有的(子对象)个人观点。并且已经提供的几个主要方法来访问对象。
1.       document.getElementById
2.       document.getElementsByName
3        &n ......

在html web网页中父子窗口之间值的传值

在Web开发中,常常要用到两个窗口之间互相传值。下面谈谈父子窗口之间的传值:
一:使用Open开启子窗口
1:单值传递
通过open开启的子窗口比较好处理。
页面窗口1.html代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<body>
<form name=" ......

解决json包含html标签无法显示的问题

主要是将json无法识别的字符进行转义   
function dotran($str) {
        $str = str_replace('"','\\"',$str);
        $str = str_replace("\r\n",'\\r\\n',$str);
        $str = str_ ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号