Results 1 to 11 of 11

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    TEKIL4O's Avatar
    Join Date: Feb:2007
    Location: Rousse/Sofia
    Posts: 341

    PHP JavaScript

    !

    :
    , , , , . - , ( ) ( ), - + .
    - , ?

    !

    !
    EP 9NPA+ U (HR-05/IFX)| 4200+X2@2.8GHz (IFX-14) | 2x1GB KINGSTON (DDR430 3-4-3-6-1T@2.7V) | GB 8800GT (512MB) | WD6401AALS | CFT-750-14CS

  2. #2
    Bombera's Avatar
    Join Date: Jul:2001
    Location: 4EVA
    Posts: 13,833
    //new fields values cannot be set due to security issues
    //netscape.security.PrivilegeManager.enabl ePrivilege('UniversalFileRead');

    , , .
    , value , , .
    EVGA X299 FTW K|i9-7960X@4.7|4x8 Patriot Viper Steel 4000|GTX 1660 Ti|970 EVO 1 TB|Seasonic Focus GX-1000|Xigmatek Elysium|
    Rampage IV Extreme BE|E5-1680v2@4.7|4x4 HyperX 1866|Cougar Aqua 240|GTX 1050 Ti|970 EVO 1/4 TB|CM 850 SilentPro|HAF-X|

  3. #3
    TEKIL4O's Avatar
    Join Date: Feb:2007
    Location: Rousse/Sofia
    Posts: 341
    , .value, . , ,
    !

    P.S. yahoo - . -
    code:
    Last edited by TEKIL4O; 26th January 2009 at 20:26.
    EP 9NPA+ U (HR-05/IFX)| 4200+X2@2.8GHz (IFX-14) | 2x1GB KINGSTON (DDR430 3-4-3-6-1T@2.7V) | GB 8800GT (512MB) | WD6401AALS | CFT-750-14CS

  4. #4
    Bombera's Avatar
    Join Date: Jul:2001
    Location: 4EVA
    Posts: 13,833
    - 10- . , , .
    EVGA X299 FTW K|i9-7960X@4.7|4x8 Patriot Viper Steel 4000|GTX 1660 Ti|970 EVO 1 TB|Seasonic Focus GX-1000|Xigmatek Elysium|
    Rampage IV Extreme BE|E5-1680v2@4.7|4x4 HyperX 1866|Cougar Aqua 240|GTX 1050 Ti|970 EVO 1/4 TB|CM 850 SilentPro|HAF-X|

  5. #5
    TEKIL4O's Avatar
    Join Date: Feb:2007
    Location: Rousse/Sofia
    Posts: 341
    yahoo - ... - ,
    EP 9NPA+ U (HR-05/IFX)| 4200+X2@2.8GHz (IFX-14) | 2x1GB KINGSTON (DDR430 3-4-3-6-1T@2.7V) | GB 8800GT (512MB) | WD6401AALS | CFT-750-14CS

  6. #6
    Bombera's Avatar
    Join Date: Jul:2001
    Location: 4EVA
    Posts: 13,833
    . , , . - , . - innerHTML DIV .
    , . .
    EVGA X299 FTW K|i9-7960X@4.7|4x8 Patriot Viper Steel 4000|GTX 1660 Ti|970 EVO 1 TB|Seasonic Focus GX-1000|Xigmatek Elysium|
    Rampage IV Extreme BE|E5-1680v2@4.7|4x4 HyperX 1866|Cougar Aqua 240|GTX 1050 Ti|970 EVO 1/4 TB|CM 850 SilentPro|HAF-X|

  7. #7
    ****** koshera's Avatar
    Join Date: Sep:2003
    Location: Sammamish, WA, USA
    Posts: 1,507
    - , file , . ( javascript) - . yahoo. - 50, 5 . , .
    Thre are 10 kinds of people in this world - people who know binary, and those who don't.
    -, .

  8. #8
    White awesomeness z0ne's Avatar
    Join Date: Feb:2002
    Location: o
    Posts: 13,331
    Quote Originally Posted by koshera View Post
    - , file , . ( javascript) - . yahoo. - 50, 5 ...
    , - .

  9. #9
    TEKIL4O's Avatar
    Join Date: Feb:2007
    Location: Rousse/Sofia
    Posts: 341
    show/hide, . ,

    , ,

    !

    EDIT:
    Code:
    <div id=files>
          <input type=hidden id=files_all value=6>
          <input name=file_1 id=file_1 type=file class=textbox><br>
          <input name=file_2 id=file_2 type=file class=textbox><br>
          <input name=file_3 id=file_3 type=file class=textbox><br>
          <input name=file_4 id=file_4 type=file class=textbox><br>
          <input name=file_5 id=file_5 type=file class=textbox><br>
    </div>
    Code:
    function addFile() {
        var files = document.getElementById('files_all').value;
        files = parseFloat(files);
        var newInput=document.createElement("input");
        newInput.setAttribute("type","file");
        newInput.setAttribute("name","file_"+files);
        newInput.setAttribute("id","file_"+files);
        newInput.className="textbox";
        document.getElementById('files').appendChild(newInput);
        files+=1;
        document.getElementById('files_all').value=files;
    }
    z0ne, , **** ? ! var, . !

    idn, , . .appendChild, .innerHTML, .

    : . <div>, input-.


    !
    Last edited by TEKIL4O; 27th January 2009 at 14:19.
    EP 9NPA+ U (HR-05/IFX)| 4200+X2@2.8GHz (IFX-14) | 2x1GB KINGSTON (DDR430 3-4-3-6-1T@2.7V) | GB 8800GT (512MB) | WD6401AALS | CFT-750-14CS

  10. #10
    White awesomeness z0ne's Avatar
    Join Date: Feb:2002
    Location: o
    Posts: 13,331
    Quote Originally Posted by TEKIL4O View Post
    show/hide, . ,

    , ,

    !
    , "" - /?"

  11. #11
    Registered User idn's Avatar
    Join Date: May:2004
    Location:
    Posts: 491
    , JavaScript , . html, copy/paste.

    Code:
    <html>
    	<head>
    		<title>Testing Upload Fields</title>
    		<script type="text/javascript">
    			function addUploadField(ev) {
    				var form = document.getElementById('UploadForm');
    				var newel = document.createElement('input');
    				newel.type = "file";
    				newel.name = "field1"; // put some proper naming here
    				form.appendChild(newel);
    			}
    		</script>
    	</head>
    	<body>
    		<form name="UploadForm" id="UploadForm">
    			<input type="file" name="field0"/>
    		</form>
    		<br/><br/>
    		<input type="button" id="AddUploadFieldButton" value="Add File" onclick="addUploadField(event);"/>
    	</body>
    </html>
    EP35-DS4 :: Pentium Q9550 :: 4x2GB DDRII :: GeForce 9800GT :: 2x320GB SATA :: DVD-ROM :: CMPSU-450VXEU

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Copyright © 1999-2011 . .
iskamPC.com | mobility.BG | Bloody's Techblog | | 3D Vision Blog |