gpt4 book ai didi

jQuery-Prototype 无冲突且语法正确

转载 作者:行者123 更新时间:2023-12-01 06:17:42 24 4
gpt4 key购买 nike

我想知道如何编写 $j('#'+divRes).html()=datos; 行才能在 jquery-protype 环境中正常工作。我收到错误:左侧赋值无效

function tx_oriconvocatorias_formPost_init(divRes) {
var $j = jQuery.noConflict();
$j.ajax({
type: 'GET',
data: 'eID=ori_convocatorias_formPost',
success: function(datos){
$j('#'+divRes).html()=datos;
},
});
}

提前致谢。

最佳答案

只需将其更改为 $j('#'+divRes).html(datos);

在 jQuery 中,要读取 html,请使用 var str = $('#id').html() 并赋值 .html('[html string]')

关于jQuery-Prototype 无冲突且语法正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6818005/

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