首页 > 代码库 > zepto.js按需加载模板对象
zepto.js按需加载模板对象
Zepto.js 是支持移动WebKit浏览器的JavaScript框架,具有与jQuery兼容的语法。2-5k的库,通过不错的API处理绝大多数的基本工作。这里要说说它的load方法,原型是:
load(url, function(data, status, xhr){ ... }) ? self其描述这样说道:
Set the html contents of the current collection to the result of a GET Ajax call to the given URL. Optionally, a CSS selector can be specified in the URL, like so, to use only the HTML content matching the selector for updating the collection:
$('#some_element').load('/foo.html #bar')
If no CSS selector is given, the complete response text is used instead.
Note that any JavaScript blocks found are only executed in case no selector is given.
下面举个例子看小下效果:先爆个照:
给左侧的list一个click事件,加载模板到右侧的请求设置中
$(".sideNav a").click(function (event) { event.preventDefault(); $(this).addClass('active').parent().siblings().find('a').removeClass('active'); $('.jNice fieldset').load('html/' + $(this).attr('href').replace('#', '') + '.html'); });我的html文件夹中demo模板如下:
<p><label>请求地址:</label><input type="text" class="text-long" value=http://www.mamicode.com/"http://192.168.1.200:5088/yykapp.ashx" style=" width:600px;" id="txturl" />>好的,效果如下:
注意,请求的地址后面可以添加id对象,这个id对象是指,对应的请求url页面的dom对象,比如我要修改下demo的模板内容下面我们更改下加载对象的代码,在地址后面添加一个id对象:
$('.jNice fieldset').load('html/' + $(this).attr('href').replace('#', '') + '.html #kkk');注意中间有一个逗号。效果如下:
这个时候加载进来的也是整个的demo页面代码,只不过填充到我们的选择器对象的内容是 url地址后面的标签对象,注意,包括id对象本身:
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。