define(function(require, exports, moudles) {
return function(jQuery) {
jQuery.extend({createUploadIframe:function(id,uri){var frameId=&a[......]
栏目归档: Program Code
SeaJS中将jQuery进行cmd封装
define(function() {
//jQuery的mini源码
return $.noConflict(true);});
$.noConflict(true);这个写成$.noConflict();也是可以的[……]
jQuery click无效的解决办法
jQuery 判断页面元素是否存在的代码
JavaScript取当前页面的域名,完整地址示例
取域名可以使用:
host = window.location.host;
alert(host);
host = document.domain;alert(host);
取完整地址使用:
url = window.location.href;alert(url);u[......]
iframe如何获取引用网站(父层)的地址
来自:https://stackoverflow.com/questions/3420004/
iframe中的js代码如下:
<SCRIPT LANGUAGE="JavaScript">
var url = (window.locatio[......]
smarty 如何理解更新指定模板缓存
代码如下:
require '../libs/Smarty.class.php';
$smarty = new Smarty;
$smarty->clearCache('index.tpl');[......]
jQuery-ajax 200 return Error的原因
ajaxfileupload-jQuery.handleError is not a function修复办法
jQuery.handleError is not a function 报错原因是:
- handlerError只在jQuery-1.4.2之前的版本中存在,jQuery-1.4.2之后的版本中都没有这个函数了。
- 如果返回的dataType: “json”, 是[……]
jQuery-dataTable a.nodeName is undefined解决办法
出现这个问题主要是定位的obj不对,原始我使用
var aPos=$('.datatable').dataTable().fnGetPosition(td_obj);
就会报错,后来改为
var aPos=$('.datatable'[......]