Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本框元素,其中包含一个名为“housenumber”的占位符。
目前,当在我的表单上按下搜索按钮时,文本“housenumber”被传递到我的 SQL 查询中,而不是什么都没有(空/空白)。
有人可以提供 jQuery 来删除 'housenumber' 占位符文本,这样如果没有输入任何内容并且点击搜索按钮,我的文本框就很清楚了吗?
请注意,搜索按钮不是表单提交按钮,只是一个 jQuery 点击事件按钮。
$("#button").click(function(){ if ($("#input").val()=="housenumber") { $("#input").val(""); } });