如何將輸入文本變量(值)添加到函數(var描述)?將文本值添加到jquery函數(var)
$(".update").click(function()
{
var article_id=$(this).attr("article_id");
var description=$(this).attr("description");
$.ajax
({
type: "POST",
url: "conf.php",
data: {
article_id: article_id,
description: description,
},..
<a href="javascript:;" class="update" article_id="$id">Description</a><input type="text"></input>
對不起。實際上我只需要Input type =「text」中的值。 var description = $(this).next(「input」)。val();試過這個,但沒有工作 – Jonuux
然後值通過它沒有定義 – Jonuux
我的一個小錯誤。一切正常。謝謝 – Jonuux