關於ngModel在 IE9使用DELETE鍵的問題

請問一下在IE9 中使用 ngModel
在輸入時都沒有問題,但是使用BACK或是DELETE鍵時,並不會同步到目標上

請問是我寫錯嗎,或是有什麼解法

<input type="text" [(ngModel)]="name">

https://plnkr.co/edit/vCISfUXmc7EapI05Vym0?p=info

你有將 polyfills 打開嗎? 或是開 console 有任何錯誤訊息嗎?

POLYFILLS有打開
然後沒有錯誤訊息

輸入時都正常,就是DELETE鍵和BACK鍵就沒有用

可以貼上你的 polyfills 檔案內容嗎?

/**
 * This file includes polyfills needed by Angular and is loaded before the app.
 * You can add your own extra polyfills to this file.
 *
 * This file is divided into 2 sections:
 *   1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
 *   2. Application imports. Files imported after ZoneJS that should be loaded before your main
 *      file.
 *
 * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
 * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
 * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
 *
 * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
 */

/***************************************************************************************************
 * BROWSER POLYFILLS
 */

/** IE9, IE10 and IE11 requires all of the following polyfills. **/
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/weak-map';
import 'core-js/es6/set';

/** IE10 and IE11 requires the following for NgClass support on SVG elements */
import 'classlist.js';  // Run `npm install --save classlist.js`.

/** IE10 and IE11 requires the following for the Reflect API. */
import 'core-js/es6/reflect';


/** Evergreen browsers require these. **/
// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.
import 'core-js/es7/reflect';


/**
 * Required to support Web Animations `@angular/platform-browser/animations`.
 * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation
 **/
// import 'web-animations-js';  // Run `npm install --save web-animations-js`.



/***************************************************************************************************
 * Zone JS is required by Angular itself.
 */
import 'zone.js/dist/zone';  // Included with Angular CLI.



/***************************************************************************************************
 * APPLICATION IMPORTS
 */

/**
 * Date, currency, decimal and percent pipes.
 * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
 */
import 'intl';  // Run `npm install --save intl`.
/**
 * Need to import at least one locale-data with intl.
 */
import 'intl/locale-data/jsonp/en';

我這邊測試 plnkr 和自己寫都沒問題耶,會不會是有什麼擴充套件攔截掉了?

IE9 嗎 ??

plnkr的網址可以借我測看看嗎

沒問題+1, 在本機上測試 IE9 沒有遇到你說的問題
到是有發現如果按 ESC 時,會沒有辦法觸發 change 事件

目前我的專案就是用CLI建立起來 然後直接在 app.component.html 加上

<input type="text" [(ngModel)]="title">

然後在CHROME及IE10以上皆可

請問各位有開 polyfills 嗎
可否讓我參考一下呢
感謝

不好意思

請問各位大大可以提供SAMPLE給我嗎

因為我還是試不出來

我所使用的POLYFILLS 的內容與你是相同的

KNOWN ISSUE:

解法: 安裝 ie9-oninput-polyfill

並在 angular-cli.json 的script 區段加上這段

{
          "input": "../node_modules/ie9-oninput-polyfill/ie9-oninput-polyfill.js",
          "lazy": true,
          "output": "ie9-oninput-polyfill"
        }

index.html 裡加上

<!--[if IE 9]><script src="ie9-oninput-polyfill.bundle.js"></script><![endif]-->

這樣子應該就可以讓 IE9 的 delete/ backspace 鍵正常運作

2個讚

感謝
己解決