if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
// some code..
}
function shuffle(array) {
var currentIndex = array.length, temporaryValue, randomIndex ;// While there remain elements to shuffle...
while (0 !== currentIndex) {// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
$.getScript("my_lovely_script.js", function(){
alert("Script loaded and executed.");
// Use anything defined in the loaded script...
});
不使用jQuery的方法请参考:http://stackoverflow.com/questions/950087/include-a-javascript-file-in-another-javascript-file
function validateEmail(email) {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
return re.test(email);
}
// 类似于HTTP跳转
window.location.replace("
http://howto.eguidedog.net");
// 类似于点击一个链接
window.location.href = "
http://howto.eguidedog.net";
有时候,我们想通过Javascript/jQuery获取URL中的参数值,例如想获取下面地址中的q值(keyword):
http://example.com/?q=keyword&action=query
可以通过下面函数实现:
var intvalue = Math.floor( floatvalue );
var intvalue = Math.ceil( floatvalue );
drupal_add_js和drupal_add_css已经不可用了。可以通过下面方法添加JS和CSS:
假设自定义的模块名称是foobar,在模块的目录下创建文件foobar.libraries.yml
(模块的目录应该是modules/foobar),内容如下:
foobar:
version: 1.x
css:
theme: css/foo.css: {}
js: js/bar.js: {}
dependencies: - core/jquery
然后在模块的目录下创建js/bar.js和css/foo.css就可以了。jquery不再是Drupal 8模块加载的JS,所以有需要就加上dependencies。
在return form的时候声明加载的库:
MediaCoder(http://mediacoderhq.com)是一个媒体转码软件,利用它可以把视频转换成兼容性更好的MP4(比格式工厂更好。MP4有细分的编码格式,有些浏览器和播放器对部分MP4格式是不兼容的),不过这个网站和软件的广告异常地多,让人感叹——虽然免费也不用卖这么多广告吧……
下面是当前最新一个下载链接:
http://mediacoderhq.com/getfile.htm?site=mc.rengaosh.com&file=MediaCoder...
使用步骤如下:
1. 启动MediaCoder,要稍等几秒
2. 点击“按此启动”
3. 点击窗口左上角菜单栏“ADD”图标,添加需要编码的文件
4. 调整窗口左偏下的“视频码率”到"256 Kbps"以减小文件大小
5. 点击图标菜单START图标,开始转码
热门内容
最新内容
- 5 hours ago
- 2 days ago
- 2 days ago
- 2 days ago
- 2 days ago
- 3 days 3 hours ago
- 2 weeks 6 days ago
- 4 weeks 1 day ago
- 1 month ago
- 1 month ago
最新评论