嗨我在点击按钮时试图附加javascript代码,但我想我搞砸了。如果有人可以帮我解决语法问题。也许我做错了;如果有人有更好的方法,我们将不胜感激。
$("#btn_add").click(function(){
'<script>$(".selectcategory'+count+'").change(function() {var vv = ($(this).val());$( ".cat'+count+'" ).empty();$(".cat'+count+'").append("<input id="i_index" type="text" name="categorie[]" maxlength="255" style="width:80%" value="vv">");});</script>'
});
答案 0 :(得分:2)
您的代码中存在很多错误。我现在正在学习Javascript,所以也许我不会提供解决方案,但我正在努力帮助。
首先,脚本标记应该是您的代码,而不是代码。第二次使用单引号和双引号正确。最后但并非最不重要的是,在代码中使用一些标记。很难看出问题出在哪里。
<script>
$("#btn_add").click(function()
{
$(".selectcategory"+count).change(function()
{
var vv = ($(this).val());
$(".cat"+count).empty();
$(".cat"+count).append('<input id="i_index" type="text" name="categorie[]" maxlength="255" style="width:80%" value="vv">');
});
});
</script>