
');
//delCookie("Key");
// $('#searchin').keydown(function () {
// if (event.keyCode == 13) {
// key = $("#searchin").val();
// setCookie('Key', key, 360);
// location.href = "/Special/NSpecialList.html";
// }
// });
function quickQueryCust(evt) {
evt = (evt) ? evt : ((window.event) ? window.event : "") //兼容IE和Firefox获得keyBoardEvent对象
var key = evt.keyCode ? evt.keyCode : evt.which; //兼容IE和Firefox获得keyBoardEvent对象的键值
if (key == 13) { //判断是否是回车事件。
//根据需要执行某种操作。
key = $("#searchin").val(); setCookie('Key', key, 0, 0, 30); location.href = "/Special/NSpecialList.html";
}
}
function test() {
key = $("#searchin").val(); setCookie('Key', key, 0, 0, 30); location.href = "/Special/NSpecialList.html";
}