可能程序不兼容, 可以更換個版本試試。另外建和沖議參考下程序?qū)ε渲玫囊蟆?/p>
創(chuàng)新互聯(lián)建站是一家專注于成都網(wǎng)站設(shè)計、做網(wǎng)站與策劃設(shè)計,臺山網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)10多年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:臺山等地區(qū)。臺山做網(wǎng)站價格咨詢:18980820575
或者右鍵需要運行的程序 選擇兼容喚純殲性 用兼容模式運行試試褲搏。
這個首先你的把亮孝你的代碼給出來。才好解爛鍵碰決。
一般都做法是:
function test(){
return "返回值";
}
function dome(){
//這里假如要把返回值賦值給一個文本框
var test = test();
var text = document.getElementById("文本框的ID");
// 把值賦給文本饑談框的value
text.value = test;
}
希望能幫到你。
1. 在IE7或更早的版本上polyfill JSON.stringify。你可以使用JSON2或茄沒JSON3來polyfills。
!doctype html
html xmlns:ng=""
head
!--[if lte IE 7]
script src="/path/to/json2.js"/script
![endif]--
/head
body
...
/body
/html
2. 在連接處將id="ng-app"添加到根元素,使用ng-app屬性
!doctype html
html xmlns:ng="" id="ng-app" ng-app="optionalModuleName"
...
/html
3. 你不能使用自定義的元素標(biāo)記,像ng:view(使用屬性版本div ng-view來代替),或
4. 如果你必需要用自定義元素標(biāo)記,然后你必須采取以下步驟以確保IE8及之前版本都能用:
!doctype html
html xmlns:ng="顫基納" id="ng-app" ng-app="optionalModuleName"
head
!--[if lte IE 8]
script
document.createElement('ng-include');
document.createElement('ng-pluralize');
document.createElement('ng-view');
// Optionally these for CSS
document.createElement('ng:include');
document.createElement('ng:pluralize');
document.createElement('ng:view');
/script
![endif]--
/head
body
...
鋒判/body
/html
5. 使用ng-style標(biāo)記來替代style="{{ someCss }}"。后續(xù)的版本能夠在Chrome和Firefox下工作但不能在IE版本<=11下工作(在撰寫本文時的最新版本)。