搜索

在asp中 我添加了一个javascript警告框,但是在后退是它总出现,怎么才可...

发布网友 发布时间:2024-10-23 20:59

我来回答

3个回答

热心网友 时间:2024-11-13 19:27

你看你的条件是什么情况下弹出警告框,你后退当时的条件依然成立他当然就要弹啊,所以改下执行条件

热心网友 时间:2024-11-13 19:28

使用JAVASCRIPT版的FCK,在页面加载时(未打开FCK),创建一个隐藏的TextArea域,这个TextArea的name和ID要和创建的FCK实例名称一致,然后点击"Open Editor"按钮时,通过调用一段函数,使用FCK的ReplaceTextarea()方法来创建FCKeditor,代码如下:

CODE:
<script type="text/javascript">
<!--
function showFCK(){
var oFCKeditor = new FCKeditor( 'fbContent' ) ;
oFCKeditor.BasePath = '/FCKeditor/' ;
oFCKeditor.ToolbarSet = 'Basic' ;
oFCKeditor.Width = '100%' ;
oFCKeditor.Height = '200' ;
oFCKeditor.ReplaceTextarea() ;
}
//-->
</script>
<textarea name="fbContent" id="fbContent">textarea>

然后就可以根据FCKeditor编辑器的API控制你的fckeditor。
比如最基本的数据验证,如何在提交的时候用JS判断当前编辑器区域内是否有内容,FCK的API提供了GetLength()方法;

再比如如何通过脚本向FCK里插入内容,使用InsertHTML()等;

还有,在用户定制功能时,中间步骤可能要执行FCK的一些内嵌操作,那就用ExecuteCommand()方法。

详细的API列表,请查看FCKeditor的Wiki。而常用的API,请查看FCK压缩包里的_samples/html/sample08.html。此处就不贴代码了。

热心网友 时间:2024-11-13 19:29

后退的时候执行了此语句.可以让他跳转到别的页面.
1.直接返回
Response.Write("<script>alert(""系统提示:\n\n用户名或密码错误!或此帐号被锁定!!"");location.href=""javascript:history.back()"";</script>")
2.跳转到别的页面
Response.Write("<script>alert(""系统提示:\n\n登陆成功!\n\n欢迎"&Username&"主人回家。"");location.href=""Member.asp"";</script>")
3.给你提示是否跳转返回
Response.write("<script>alert('系统提示:您执行的操作是不可逆的!');if (confirm('您确定要这么做')){location.href='Productclassdelsmall.Asp?Action=Del';}else{location.href='javascript:history.back()';}</script>")
4.是否跳转到新的页面.
Response.write("<script>alert('恭喜您,安装成功!');if (confirm('为了系统安全,删除安装文件[install.asp]吗?')){location.href='Install.Asp?Action=Del';}else{location.href='" & AdminDirStr & "Login.asp';}</script>")
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top