function buttons(simon, j){
$(".simon-button").click(function(){
console.log($(this).hasClass(".simon-button"));
});
}
真的对我来说似乎很基本,当点击一个有simon-button类的类时,我想要它做一些事情。当我检查console.log时,这是返回false?我发现这很有趣。
答案 0 :(得分:2)
删除。在private void GetRecords(string productID)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
string cmdstr = "SELECT ProductID, ProductName, CategoryCode, PurchasePrice, " +
"SellingPrice, Description, Quantity, ProdStatusCode FROM Products" +
"WHERE ProductID = " + productID;
SqlCommand cmd = new SqlCommand(cmdstr, connection);
SqlDataAdapter adp = new SqlDataAdapter(cmd);
adp.Fill(ds, "Products");
}
}
函数中。这就是它返回虚假的原因。您的班级名称是“simon-button”而不是“.simon-button”。 “.simon-button”是一个选择器。