这是我对我的问题的尝试
我有一个搜索框(HTML):
<form method="post">
Search:<input type="text" name="search">
<input value="Search" type="submit">
</form>
然后我有php:
$search = $_POST["search"];
然后是 Jquery:
$(function() {
var foundin = $('li:contains(" /* I want this part to be the bit entered by the form... $search */ ")').css( "color", "red" );
});
但我似乎无法将 php 放入 jQuery 中。