博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
prototype中Insertion测试
阅读量:5918 次
发布时间:2019-06-19

本文共 661 字,大约阅读时间需要 2 分钟。

来一起画一条大粗线,哈哈

 

 
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 
  2. <html> 
  3.     <head> 
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
  5.         <title>Untitled Document</title> 
  6.         <script src="prototype.js"> 
  7.         </script> 
  8.     </head> 
  9.     <body> 
  10.         <div id="insertionTest" style="font-size:20px;font-weight:bold"> 
  11.             <hr>Insertion<hr> 
  12.         </div> 
  13.         <script> 
  14.              
  15.             new Insertion.After("insertionTest", " After"); 
  16.             new Insertion.Bottom("insertionTest", " Bottom"); 
  17.             new Insertion.Top("insertionTest", " Top"); 
  18.             new Insertion.Before("insertionTest", " Before"); 
  19.         </script> 
  20.     </body> 
  21. </html> 

 

本文转自sucre03 51CTO博客,原文链接:http://blog.51cto.com/sucre/413359,如需转载请自行联系原作者

 

你可能感兴趣的文章
Struts2之拦截器
查看>>
MyBatis使用Generator自动生成代码
查看>>
Windows CRT连接本地
查看>>
Java线程synchronized
查看>>
beta版本冲刺计划及安排
查看>>
智能指针shared_ptr使用学习
查看>>
数素数
查看>>
webpack前端构建工具学习总结(四)之自动化生成项目中的html页面
查看>>
python取摸的向下取整
查看>>
字符串变量的定义与引用
查看>>
全面理解虚拟DOM,实现虚拟DOM
查看>>
使用 /sys 文件系统访问 Linux 内核
查看>>
struts 标签---HTML标记库
查看>>
王爽 汇编语言程序设计实验10,题三,数值转换。(Assembly experiment Convert HEX to Decimal and Show on screen )...
查看>>
Quartz的简单使用
查看>>
读取通讯录
查看>>
创业不是 闹着玩的,水很深,
查看>>
使用combobox下拉列表框实现省 市 县 的三级联动
查看>>
这一次让自己改变
查看>>
简单理解javascript的闭包
查看>>