我正在尝试使用"34343-1232".matches("^[0-9| -]+$")
和when
使第二个函数仅在第一个函数执行后运行,但无法正常工作。
我在这里想要实现的是:
首先,我使用done
从外部页面加载div(在同一域中,此处没有跨域),然后在完全加载后,下一个脚本(即简单的文本滑块)将跑。
但是现在外部HTML不再加载在“ #jobshome”内部。
当我不使用这种方法时,得到的结果是整个外部div都将加载到单个滑块内,而这不是我所需要的。
如果我像这样使用初始部分,它会起作用,但不能达到预期效果:
$("#jobshome").load("jobs/newest-jobs .js-toprow");
我的代码如下:
$(function(){$("#jobshome").load("jobs/newest-jobs .js-toprow");});
$(function(){
//rotation speed and timer
jQuery(document).ready(function($) {
$.when(function() {
$("#jobshome").load("jobs/newest-jobs .js-toprow");
}).done(function() {
//rotation speed and timer
var speed = 3000;
var run = setInterval(rotate, speed);
var slides = $('.js-toprow');
var container = $('#jobshome');
var elm = container.find(':first-child').prop("tagName");
var item_height = container.height();
var previous = 'prevabc'; //id of previous button
var next = 'nextabc'; //id of next button
slides.height(item_height); //set the slides to the correct pixel height
container.parent().height(item_height);
container.height(slides.length * item_height); //set the slides container to the correct total height
container.find(elm + ':first').before(container.find(elm + ':last'));
resetSlides();
//if user clicked on prev button
$('#buttonsabc a').click(function(e) {
//slide the item
if (container.is(':animated')) {
return false;
}
if (e.target.id == previous) {
container.stop().animate({
'top': 0
}, 1500, function() {
container.find(elm + ':first').before(container.find(elm + ':last'));
resetSlides();
});
}
if (e.target.id == next) {
container.stop().animate({
'top': item_height * -2
}, 1500, function() {
container.find(elm + ':last').after(container.find(elm + ':first'));
resetSlides();
});
}
//cancel the link behavior
return false;
});
//if mouse hover, pause the auto rotation, otherwise rotate it
container.parent().mouseenter(function() {
clearInterval(run);
}).mouseleave(function() {
run = setInterval(rotate, speed);
});
function resetSlides() {
//and adjust the container so current is in the frame
container.css({
'top': -1 * item_height
});
}
});
});
//a simple function to click next link
//a timer will call this function, and the rotation will begin
function rotate() {
jQuery('#nextabc').click();
}
#carouselabc {
position: relative;
width: 60%;
margin: 0 auto;
}
#slidesabc {
overflow: hidden;
position: relative;
width: 100%;
height: 250px;
}
#areadoslideabc {
list-style: none;
width: 100%;
height: 250px;
margin: 0;
padding: 0;
position: relative;
}
#slidesabcdef {
width: 100%;
height: 250px;
float: left;
text-align: center;
position: relative;
font-family: lato, sans-serif;
}
/* Styling for prev and next buttons */
.btn-barabc {
max-width: 346px;
margin: 0 auto;
display: block;
position: relative;
top: 40px;
width: 100%;
}
#buttonsabc {
padding: 0 0 5px 0;
float: right;
}
#buttonsabc a {
text-align: center;
display: block;
font-size: 50px;
float: left;
outline: 0;
margin: 0 60px;
color: #b14943;
text-decoration: none;
display: block;
padding: 9px;
width: 35px;
}
a#prevabc:hover,
a#next:hover {
color: #FFF;
text-shadow: .5px 0px #b14943;
}
答案 0 :(得分:2)
为什么不使用load()
函数的回调?
$("#jobshome").load("jobs/newest-jobs .js-toprow", () => {
//do stuff after loading the html
});
when
不起作用,因为它期望一个Promise
或Deferred
对象,并且如果两者都不存在,则它将传递的值视为已解析的Deferred
(这基本上意味着它不会等待,而是立即执行then
/ done
。