要让脚本在刷新div后仍然有效,可以采用以下几种方法:
$('#parentDiv').on('click', '#targetDiv', function() {
// 脚本逻辑
});
setTimeout(function() {
// 脚本逻辑
}, 1000); // 延迟1秒执行
$.ajax({
url: 'your-url',
success: function(data) {
$('#targetDiv').html(data);
// 脚本逻辑
}
});
var script = document.createElement('script');
script.src = 'your-script.js';
document.getElementById('targetDiv').appendChild(script);
以上是几种常见的方法,可以根据具体情况选择适合的方式来实现脚本在刷新div后仍然有效。
领取专属 10元无门槛券
手把手带您无忧上云