WEB开发网
开发学院数据库Oracle 利用分段使用映射为oracle数据库建立HTML 阅读

利用分段使用映射为oracle数据库建立HTML

 2007-05-11 12:23:09 来源:WEB开发网   
核心提示: 我们可以列出有关鼠标位置的block使用者、名称、类型、block数量、以及片段的长度,为了实现这一目的,利用分段使用映射为oracle数据库建立HTML(3),我们需要两个JavaScript函数,包含以上信息的这两个函数被调用

我们可以列出有关鼠标位置的block使用者、名称、类型、block数量、以及片段的长度。为了实现这一目的,我们需要两个JavaScript函数,包含以上信息的这两个函数被调用,并传递到表单的域内:  <script language="javascript">
  function hover(own,nam,typ,bid,len)
  {
    document.form.owner.value = own;
    document.form.name.value = nam;
    document.form.type.value = typ;
    document.form.block_id.value = bid;
    document.form.length.value = len;
    return true;
  }
  function leave()
  {
    document.form.owner.value = "";
    document.form.name.value = "";
    document.form.type.value = "";
    document.form.block_id.value = "";
    document.form.length.value = "";
    return true;
  }
  </script>
  . . .
  <form name="form">
  <table border=0>
  <tr><td>Owner:</td><td><input name="owner" /></td></tr>
  <tr><td>Name:</td><td><input name="name" /></td></tr>
  <tr><td>Type:</td><td><input name="type" /></td></tr>
  <tr><td>Block#:</td><td><input name="block_id" /></td></tr>
  <tr><td>Length:</td><td><input name="length" /></td></tr>
  </table>
  </form>

上一页  1 2 3 4 5  下一页

Tags:利用 分段 使用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接