日期:2014-05-16 浏览次数:20394 次
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
jQuery('#searchcontent').append('<div><a href="http://www.baidu.com/s?wd='+ document.getElementById
('content').value+'" target="_blank">百度</a></div>');
$("#content").bind("change",function(){
$("a").attr("href","http://www.baidu.com/s?wd="+ document.getElementById('content').value+"");
});
});
</script>
</head>
<body>
<div id="searchcontent">
<input type="text" name="wd" id="content" maxlength="100" class="s_ipt" autocomplete="off">
</div>
</body>
</html>