1
夥計。我可以在jQuery .setProperty中使用類似於屬性的函數嗎?我可以在.setProperty中添加像屬性一樣的功能嗎?
jQuery(document).ready(function(){
jQuery(".content-wrapper").mouseenter(function(){
jQuery(this).find('.separator-content-box').each(function(){
this.style.setProperty('width', jQuery(jQuery('.content-wrapper').width() - jQuery('.heading').width()), 'important');
this.style.setProperty('border-color', 'red', 'important');
});
});
是的!但在這個「this.style.setProperty('width',jQuery(jQuery('。content-wrapper')。width() - jQuery('。heading')。width())''中有一個額外的jQuery,重要的');「 –