牡丹花下死做鬼 发表于 2015-8-10 10:30:14

表示完全看不懂 呜呜

康小泡 发表于 2015-8-11 10:07:14

居然用的这语法写的。好麻烦呀。

戴宇轩 发表于 2015-8-11 11:26:07

本帖最后由 戴宇轩 于 2015-8-11 11:30 编辑

我写了一个前端版
http://xxx.fishc.com/forum/201508/11/112922v67jcbr8dhwddb64.jpg<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Hello</title>
    <style type="text/css">
      body {
      width: 400px;
      height: 250px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      border: medium ridge green;
      }
      
      h1 {
      text-align: center;
      }
      
      input {
      padding-top: 5px;
      padding-bottom: 5px;
      }
      
      #text {
      margin-left: 15px;
      margin-bottom: 20px;
      }
      
      #button {
      margin-left: 125px;
      margin-right: 50px;
      }
      
      p {
      text-align: center;
      }
    </style>
    <script type="text/javascript">
      "use strict";
      
      window.onload = function () {
      window.output = document.getElementById("output");
      }
      
      function sayHello() {
      var value = document.getElementById("text").value;
      window.output.innerHTML = "你好," + value + ",欢迎你来到鱼C!";
      }
      
      function clearName() {
      document.getElementById("text").value = "";
      window.output.innerHTML = "";
      }
    </script>
</head>
<body>
    <h1>下面填写你的名字</h1>
    <form action="#">
      <input type="text" size="50" id="text"><br>
      <input type="submit" value="开始" onclick="sayHello();" id="button">
      <input type="submit" value="重填" onclick="clearName();">
    </form>
    <p id="output"></p>
    <p>
      <a href="http://bbs.fishc.com/forum.php">鱼C论坛</a>
    </p>
</body>
</html>

黑龍 发表于 2015-8-14 20:58:57

kklloo 发表于 2015-8-11 10:07
居然用的这语法写的。好麻烦呀。

好久不看asp了复习下之前写了个留言板现在access下在太麻烦

黑龍 发表于 2015-8-20 15:36:12

康小泡 发表于 2015-8-11 10:07
居然用的这语法写的。好麻烦呀。

前几个都是摘录的 除了那个表单 CSS什么的都是为了小甲鱼的助手哈 其实真正的代码没多少

waliemiao 发表于 2015-10-14 21:00:19

有意思呢

dps521 发表于 2015-11-23 09:08:53

来参观一下呵呵
页: [1]
查看完整版本: 输入你的名字就向你问好 asp源码