博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScript面向对象+Array的用法及字符串组合+动态建立锚点
阅读量:5080 次
发布时间:2019-06-13

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

脚本部分:

function school(sName,sDddress,sPhone,sMail){    this.SName = sName;    this.SAddress = sDddress;    this.SPhone = sPhone;    this.SMail = sMail;    this.parmsArray = new Array("test1", "test2", "test3", "test4");    this.index = 0;    this.SInfomation = ShowInfomation;    this.trades = CreateSort;    this.SAnchorUrl = AnchorUrl;}function ShowInfomation(){    var msg = "";    msg += "学校名称:" + this.SName + "\n";    msg += "学校地址:" + this.SAddress + "\n";    msg += "学校电话:" + this.SPhone + "\n";    msg += "电子邮件:" + this.SMail;    window.alert(msg);}function CreateSort(){    var objArray = new Array("一年级",                             "二年级",                             "三年级",                             "四年级",                             "五年级",                             "六年级");    objArray.sort(function (arg1, arg2) {        if (arg1.length > arg2)            return false;        else            return true;    });    window.alert(objArray.join(","));}function AnchorUrl(){        if (this.index < 3)            this.index++;        else            this.index = 0;        window.location.hash = this.parmsArray[this.index];}

HTML部分:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>                    

锚点间跳转实例

test1

test2

test3

test4

 

 

转载于:https://www.cnblogs.com/fang-beny/p/3331564.html

你可能感兴趣的文章
C++入门--1.0输入输出
查看>>
让搭建在Github Pages上的Hexo博客可以被Google搜索到
查看>>
Introduction to 3D Game Programming with DirectX 12 学习笔记之 --- 第十四章:曲面细分阶段...
查看>>
在WPF控件上添加Windows窗口式调整大小行为
查看>>
背水一战 Windows 10 (36) - 控件(弹出类): ToolTip, Popup, PopupMenu
查看>>
教育类APP开发现新增长,多款APP该如何突围?
查看>>
打开3389
查看>>
React学习记录
查看>>
nginx常见内部参数,错误总结
查看>>
对象与类
查看>>
《奸的好人2》财色战场----笔记
查看>>
BZOJ 1834网络扩容题解
查看>>
bzoj1878
查看>>
【Vegas原创】Mysql绿色版安装方法
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
分享《去哪儿网》前端笔试题
查看>>
2013-07-04学习笔记二
查看>>
CP15 协处理器寄存器解读
查看>>
【codeforces 787B】Not Afraid
查看>>
【9111】高精度除法(高精度除高精度)
查看>>