오류 유형: $.browser가 정의되지 않았습니다.
저는 드롭다운 선택 옵션을 만들기 위해 ms 드롭다운 이미지 콤보 박스를 사용하고 있습니다.이 코드를 PC에서 로컬로 실행하면 모든 것이 잘 작동합니다.하지만 GoDaddy 서버에서 실행하면 ms 드롭다운이 비활성화됩니다.
어떤 브라우저에서도 작동하지 않습니다.Firebug는 다음과 같은 오류를 표시합니다.
TypeError: $.browser is undefined
echo <<<_START
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>profile</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="HAPedit 3.1">
<link rel="stylesheet" href="profile.css" type="text/css">
<link rel="stylesheet" type="text/css" href="dd.css" />
<link rel="stylesheet" href="javascript/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.0.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.0.js"></script>
<script type="text/javascript" src="jQuery.js"></script>
<script src="javascript/jquery-ui.js"></script>
<script type="text/javascript" src="javascript/drop.js"></script>
<script src="jquery.dd.min.js"></script>
<script type="text/javascript" src="jquery.blockUI3.js"></script>
<script type="text/javascript" src="javascript/req.js"></script>
<link rel="stylesheet" href="css/body.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker({dateFormat: 'dd-mm-yy', minDate: 0, maxDate: "+0M +5D"
});
});
</script>
<script type="text/javascript">
<!--
function otherSelect() {
var other = document.getElementById("otherBox");
if (document.getElementById("form3").place.options[document.getElementById("form3").place.selectedIndex].value == "other") {
other.style.visibility = "visible";
}
else {
other.style.visibility = "hidden";
}
}
//-->
</script>
</head>
<body id="body">
<div id="container">
<div class="header">
<a href="profile.php" class="logo">
<img title="Title" alt="Alter" src="images/logo.png" border="0" height="60px" width="200px">
</a>
<a style="text-decoration:none; margin-top:15px; font-family:Bookman Old Style; font-size:12px; color:#FFFFFF; font-weight:bold;" href="logout.php?id='$session_id'" class="req">
Logout
</a>
<a href="notification.php?email='$encrypted_string'" class="req1">
<img border="0" title="Notifications" alt="Notifications" src="images/notification.png" height="60px" width="60px"><div class="text1">$numbr</div>
</a>
<a href="request.php?email='$encrypted_string'" class="req2">
<img border="0" title="requests" alt="Requests" src="images/request.png" height="60px" width="60px"><div class="text">$req</div>
</a>
</div>
<div id="navigation">
<div id="picture"><img src="$img">
<h1 id="display" style="margin-left:30px;">$name</h1><hr>
<table style="background-color:#81F781;font-family:Chaparral Pro,corbel; font- size:17px; color:#1C1C1C; width:100%;" border="1" cellpadding="25">
<tr><th>Requests($n)</th></tr></table>
</div>
</div></div>
<div style="margin-top: 90px;" id="conte">
_START;
echo <<<_START
</div>
<div id="accept" style="display:none">
<form method="post" id="form3" action="cnfrm.php">
<br><table border="0" style="width:100%;" cellspacing="4" cellpadding="4"><tr> <td style="font-family:Chaparral Pro,corbel; font-size:17px; color:#1C1C1C;">Meeting Date: <input type="text" id="datepicker" name="date"/></td>
<td style="font-family:Chaparral Pro,corbel; font-size:17px; color:#1C1C1C;">@ about<input type="text" id="time" size="3">AM<input type="radio" name="time2" id="time2" value="am"> | PM<input type="radio" name="time2" id="time2" value="pm"></td></tr>
_START;
echo <<<H
<tr><td valign="top" rowspan="2">
<select id="place" name="place" style="width:300px;" onchange="otherSelect()">
<option value="" data-description="Choose your meeting place" selected="selected">Meet me @</option>
<option value="LC" data-image="image/msdropdown/icons/meet.png" data-description="Limbdi Corner">L.C</option>
<option value="VT" data-image="image/msdropdown/icons/meet.png" data-description="Vishwanath temple">V.T</option>
<option value="H.G" data-image="image/msdropdown/icons/meet.png" data-description="Hyderabaad Gate">H.G</option>
<option value="D.G Corner" data-image="image/msdropdown/icons/meet.png" data-description="Dhanrajgiri Corner">D.G corner</option>
<option value="Library" data-image="image/msdropdown/icons/meet.png" data-description="IIT Library">Library</option>
<option value="other" data-image="image/msdropdown/icons/meet.png" data-description="Add your own...">Other place</option>
</select> </td></tr>
H;
이 문제는 해결되었습니다. ms dropdown update 및 최신 파일 다운로드.
그냥 js에 $. browser 코드를 입력하세요.
var matched, browser;
jQuery.uaMatch = function( ua ) {
ua = ua.toLowerCase();
var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
/(msie) ([\w.]+)/.exec( ua ) ||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
[];
return {
browser: match[ 1 ] || "",
version: match[ 2 ] || "0"
};
};
matched = jQuery.uaMatch( navigator.userAgent );
browser = {};
if ( matched.browser ) {
browser[ matched.browser ] = true;
browser.version = matched.version;
}
// Chrome is Webkit, but Webkit is also Safari.
if ( browser.chrome ) {
browser.webkit = true;
} else if ( browser.webkit ) {
browser.safari = true;
}
jQuery.browser = browser;
$.browser
JQuery 1.9에서 제거되었습니다.대신 Modernizr 프로젝트를 사용할 수 있습니다.
http://jquery.com/upgrade-guide/1.9/ #jquery-browser-
IE 10 및 IE 11을 지원하기 위한 업데이트(TRIDENT 버전)
the @daniel.mo ura 답변을 완료하려면 IE 11 및 +를 지원하는 버전이 있습니다.
var matched, browser;
jQuery.uaMatch = function( ua ) {
ua = ua.toLowerCase();
var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
/(msie)[\s?]([\w.]+)/.exec( ua ) ||
/(trident)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
[];
return {
browser: match[ 1 ] || "",
version: match[ 2 ] || "0"
};
};
matched = jQuery.uaMatch( navigator.userAgent );
//IE 11+ fix (Trident)
matched.browser = matched.browser == 'trident' ? 'msie' : matched.browser;
browser = {};
if ( matched.browser ) {
browser[ matched.browser ] = true;
browser.version = matched.version;
}
// Chrome is Webkit, but Webkit is also Safari.
if ( browser.chrome ) {
browser.webkit = true;
} else if ( browser.webkit ) {
browser.safari = true;
}
jQuery.browser = browser;
// log removed - adds an extra dependency
//log(jQuery.browser)
이 스크립트만 포함하면 됩니다.
http://code.jquery.com/jquery-migrate-1.0.0.js
jquery javascript 파일을 포함한 후에.
나는 코드에 다음 html을 넣었고 이것은 $.browser 오류를 해결했습니다.
<script src="http://code.jquery.com/jquery-migrate-1.0.0.js"></script>
이것이 당신에게 도움이 되길 바랍니다.
jquery 파일을 다음과 같이 바꿉니다.
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script> <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
$(.live(function()){}); 및 jQuery.browser가 jquery 1.9.0에서 정의되지 않음 - $.browser가 jquery 업데이트에서 사용되지 않음
godaddy에서 jquery 1.9의 다른 버전을 사용하는 것처럼 들리므로 코드를 변경하거나 마이그레이션 플러그인 http://code.jquery.com/jquery-migrate-1.0.0.js 을 포함하십시오.
아래에 명시된 jQuery migration link를 사용하여 해결했습니다.
<script src="http://code.jquery.com/jquery-migrate-1.0.0.js"></script>
당신의 코드나 jQuery 플러그인 중 어느 곳에서 코드가 호출되고 있습니다.$.browser
현재 브라우저 유형을 가져옵니다.
그러나 early has years 함수는 더 이상 사용되지 않습니다.그 이후로 일부 버그가 발생하였으나, 사용이 중단되었기 때문에 jQuery팀에서 수정하지 않기로 결정하였습니다.기능에 전혀 의존하지 않기로 했습니다.
에 대한 언급이 없습니다.$.browser
코드에 따라서 문제는 플러그인 중 하나에 있을 수 있습니다.찾으려면 참조한 각 플러그인의 소스 코드를 살펴봅니다.<script>
꼬리표를 매다
그것을 고치는 방법에 관해 말하자면, 음, 그것은 상황에 따라 다릅니다.예를 들어 문제가 있는 플러그인의 업데이트 버전이 있을 수 있습니다.또는 유사한 작업을 수행하지만 의존하지 않는 다른 플러그인을 사용할 수도 있습니다.$.browser
.
Wordpress 8.5.1에서 "Enable jQuery Migration Helper" 플러그인을 설치했습니다.
그리고 문제없이 작동했습니다.
이 실이 첫 번째 항목이기 때문에 대부분의 사람들이 우연히 발견합니다.저의 수정 사항도 공유하고 싶습니다.함수에서 다음과 같이 스크립트를 대기열에 넣을 수 있습니다.php 파일.
add_action( 'wp_enqueue_scripts', 'patch_jquery_migrate' );
function patch_jquery_migrate() {
wp_deregister_script('jquery-migrate');
wp_register_script('jquery-migrate', ("http://code.jquery.com/jquery-migrate-1.0.0.js"), false, null);
wp_enqueue_script( 'jquery-migrate' );
}
이 jquery를 Github에 사용해서 해결했습니다.
<script src="http://code.jquery.com/jquery-migrate-1.0.0.js"></script>
자세한 내용은 이 링크를 참조하시기 바랍니다.https://github.com/Studio-42/elFinder/issues/469
언급URL : https://stackoverflow.com/questions/14798403/typeerror-browser-is-undefined
'programing' 카테고리의 다른 글
요청 방법.인증된 작업입니까? (0) | 2023.09.28 |
---|---|
자바스크립트의 숫자에서 선행 0 제거 (0) | 2023.09.28 |
글꼴 어썸이 작동하지 않음, 아이콘이 사각형으로 표시됨 (0) | 2023.09.28 |
루프용 자바스크립트를 중지하는 방법? (0) | 2023.09.28 |
$http에서 이미지를 반환하는 방법.AngularJS에 들어가다 (0) | 2023.09.28 |