Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 jQuery 下拉框事件来替换已分配给元素的 SPARQL。
我使用的代码似乎不起作用:
var sel = $('<select>').appendTo('body') $(sel).change(function (){ if() { $(sparqlquery).replaceWith("UPDATED SPARQL"); } });
尝试:
var sel = $('select').appendTo('body'); $(sel).change(function(){ $(sparqlquery).replaceWith("UPDATED SPARQL"); });
这至少修复了您刚刚粘贴的代码,但我不知道这是否真的解决了您的问题。为此,我需要查看 HTML 并获得更多上下文。