我有这个:
$(document).ready(function() {
$("input[type=button]").click(function () {
$("#test").html("W3Schools");
alert("Would submit: " + $(this).siblings("input[type=text]").val());
$.ajax({ url: "index.php",
data: {action: $(this).siblings("input[type=text]").val()},
type: 'post'
});
});
});
'W3Schools' 显然只是填充物,我在我的 php 脚本中有一个名为 'generateHTML()' 的函数,我想用它来代替 'W3Schools'。我该怎么办?