资料
表格
制度
合同
管理
职场
经营
创业
范文
总结
计划
作文
文章
美文
词句
教程
模板
图片
字体
图标
办公
人事
财务
生产
管理资源吧首页
>>>
教程
>>>
编程
>>>
JavaScript教程
>>>
页面内查找
你可以输入'脚本'查查看 查找页面中的字符 <img src="/_New/_cj/myeditor/sysimage/space.gif" class="ewebeditor__script" _ewebeditor_fake_tag="script" _ewebeditor_fake_value="%3Cscript%20language%3D%22JavaScript%22%3E%20%0D%0A%0D%0Avar%20NS4%20%3D%20(document.layers)%3B%20%20%20%20%2F%2F%20Which%20browser%3F%20%0D%0Avar%20IE4%20%3D%20(document.all)%3B%20%0D%0A%0D%0Avar%20win%20%3D%20window%3B%20%20%20%20%2F%2F%20window%20to%20search.%20%0D%0Avar%20n%20%20%20%3D%200%3B%20%0D%0A%0D%0Afunction%20findInPage(str)%20%7B%20%0D%0A%0D%0A%20%20var%20txt%2C%20i%2C%20found%3B%20%0D%0A%0D%0A%20%20if%20(str%20%3D%3D%20%22%22)%20%0D%0A%20%20%20%20return%20false%3B%20%0D%0A%0D%0A%20%20%2F%2F%20Find%20next%20occurance%20of%20the%20given%20string%20on%20the%20page%2C%20wrap%20around%20to%20the%20%0D%0A%20%20%2F%2F%20start%20of%20the%20page%20if%20necessary.%20%0D%0A%0D%0A%20%20if%20(NS4)%20%7B%20%0D%0A%0D%0A%20%20%20%20%2F%2F%20Look%20for%20match%20starting%20at%20the%20current%20point.%20If%20not%20found%2C%20rewind%20%0D%0A%20%20%20%20%2F%2F%20back%20to%20the%20first%20match.%20%0D%0A%0D%0A%20%20%20%20if%20(!win.find(str))%20%0D%0A%20%20%20%20%20%20while(win.find(str%2C%20false%2C%20true))%20%0D%0A%20%20%20%20%20%20%20%20n%2B%2B%3B%20%0D%0A%20%20%20%20else%20%0D%0A%20%20%20%20%20%20n%2B%2B%3B%20%0D%0A%0D%0A%20%20%20%20%2F%2F%20If%20not%20found%20in%20either%20direction%2C%20give%20message.%20%0D%0A%0D%0A%20%20%20%20if%20(n%20%3D%3D%200)%20%0D%0A%20%20%20%20%20%20alert(%22Not%20found.%22)%3B%20%0D%0A%20%20%7D%20%0D%0A%0D%0A%20%20if%20(IE4)%20%7B%20%0D%0A%20%20%20%20txt%20%3D%20win.document.body.createTextRange()%3B%20%0D%0A%0D%0A%20%20%20%20%2F%2F%20Find%20the%20nth%20match%20from%20the%20top%20of%20the%20page.%20%0D%0A%0D%0A%20%20%20%20for%20(i%20%3D%200%3B%20i%20%3C%3D%20n%20%26%26%20(found%20%3D%20txt.findText(str))%20!%3D%20false%3B%20i%2B%2B)%20%7B%20%0D%0A%20%20%20%20%20%20txt.moveStart(%22character%22%2C%201)%3B%20%0D%0A%20%20%20%20%20%20txt.moveEnd(%22textedit%22)%3B%20%0D%0A%20%20%20%20%7D%20%0D%0A%0D%0A%20%20%20%20%2F%2F%20If%20found%2C%20mark%20it%20and%20scroll%20it%20into%20view.%20%0D%0A%0D%0A%20%20%20%20if%20(found)%20%7B%20%0D%0A%20%20%20%20%20%20txt.moveStart(%22character%22%2C%20-1)%3B%20%0D%0A%20%20%20%20%20%20txt.findText(str)%3B%20%0D%0A%20%20%20%20%20%20txt.select()%3B%20%0D%0A%20%20%20%20%20%20txt.scrollIntoView()%3B%20%0D%0A%20%20%20%20%20%20n%2B%2B%3B%20%0D%0A%20%20%20%20%7D%20%0D%0A%0D%0A%20%20%20%20%2F%2F%20Otherwise%2C%20start%20over%20at%20the%20top%20of%20the%20page%20and%20find%20first%20match.%20%0D%0A%0D%0A%20%20%20%20else%20%7B%20%0D%0A%20%20%20%20%20%20if%20(n%20%3E%200)%20%7B%20%0D%0A%20%20%20%20%20%20%20%20n%20%3D%200%3B%20%0D%0A%20%20%20%20%20%20%20%20findInPage(str)%3B%20%0D%0A%20%20%20%20%20%20%7D%20%0D%0A%0D%0A%20%20%20%20%20%20%2F%2F%20Not%20found%20anywhere%2C%20give%20message.%20%0D%0A%0D%0A%20%20%20%20%20%20else%20%0D%0A%20%20%20%20%20%20%20%20alert(%22Not%20found.%22)%3B%20%0D%0A%20%20%20%20%7D%20%0D%0A%20%20%7D%20%0D%0A%0D%0A%20%20return%20false%3B%20%0D%0A%7D%20%0D%0A%0D%0A%3C%2Fscript%3E"> <form name="search" onSubmit="return findInPage(this.string.value);"> <font size=3><input name="string" type="text" size=15 onChange="n = 0;"></font> <input type="submit" value="Find"> </form>
[Ctrl+A 全选 注:
如需引入外部Js需刷新才能执行
]
教程首页
更多教程