gpt4 book ai didi

jquery-ui - Chrome 扩展内容脚本中的 JQueryUI

转载 作者:行者123 更新时间:2023-12-02 23:40:23 24 4
gpt4 key购买 nike

将 jquery-ui(css 和 js)和 jquery 放入 list 后,我可以使用 jq 选择器($),但是 jquery-ui 似乎无法访问。例如,我尝试在内容脚本 (content_script.js) 中插入可调整大小的 div:

var $div = document.createElement('div');
$div.id = 'divId';
$div.innerHTML = 'inner html';
$("body").append($div);//works without error
$("#divId").css("background-color","yellow");//works
//doesn't give resizable handles, however works in a regular html file:
$("#divId").resizable();
//however this also has issue:
document.getElementById("divId").style.resize = "both";

list :

"css":["jquery-ui.css"],
"js": ["jquery-ui.js","jquery.js","content_script.js"]

最佳答案

加载顺序错误 - jquery-ui 期望首先加载 jquery

"js": ["jquery.js", "jquery-ui.js", "content_script.js"]

关于jquery-ui - Chrome 扩展内容脚本中的 JQueryUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31334991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com