这是我的js。
抱歉,没有具体说明,同时也学习了如何使用本网站。我的第一个答案是:我的js错误。应该是:
$(document).ready(function () {
$('#search-now').click(function () {
var SEARCHY = $('#prodId').val();
$.ajax({
type: 'POST',
data: { "search": SEARCHY },
url: '/Search/Find',
success: function (result) {
console.log(result);
}
});
});
});
答案 0 :(得分:0)
我的代码有很多问题,有时大写,有时则不需要代码。到目前为止,我已经成功实现了将结果作为html返回到控制台的方式,现在只是将其显示而不是写入控制台。