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

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

/**  * wrap javascript codes with a html-tag  * @author Wilson Zeng */ function js($script){
return ''."\n"; } /** * wrap javascript codes with a html-tag & history back * @author Wilson Zeng * @param $message [optional] show alert() if is given * @param $url [optional] the next step that will jump to if is given * @author Wilson Zeng */ function jsBack($message = NULL, $url = NULL, $addslashes = TRUE){
$script = ''; if($message){
$script .= 'alert("'.str_replace('"', '\"', ($addslashes ? addslashes($message) : $message)).'");'; } $script .= $url ? 'location.href="'.$url.'";' : 'history.back();'; echo js($script); exit(0); }

转载于:https://www.cnblogs.com/ppoo24/archive/2012/01/17/2324590.html

你可能感兴趣的文章
Oracle 语句常见错误
查看>>
关于create database语句在10g,11g中的不同
查看>>
MySQL分布式集群之MyCAT(一)简介(修正)
查看>>
[20160711]索引键值在B tree索引块中的顺序
查看>>
nginx启动、开机自启动、重启、关闭
查看>>
error: src refspec XXX matches more than one
查看>>
云监控最佳实践之-容器所有实例的热力图
查看>>
用十条命令在一分钟内检查 Linux 服务器性能
查看>>
Lua Development Tools (LDT)
查看>>
Kafka源码分析之MemoryRecords
查看>>
document.referrer
查看>>
Coredump介绍及如何在Android中开启和使用来分析Crash等问题
查看>>
go语法之一
查看>>
微信应用号开发教程
查看>>
HTAP数据库 PostgreSQL 场景与性能测试之 6 - (OLTP) 空间应用 - KNN查询(搜索附近对象,由近到远排序输出)...
查看>>
安装drbd
查看>>
送上最新鲜的互联网行业新闻-【2015-05-15】
查看>>
一个架构师谈什么是架构以及怎么成为一个架构师
查看>>
JQuery实战--可以编辑的表格
查看>>
公有云行业:用价格撕开市场,用质量取胜行业
查看>>