The template file code is as follows: [html] & lt; tableclass & quot; listnowrapitemDetail & quot; addButton & quot; add a post ?? Quot; width & quot; 100% & quot; & gt; & lt; thead & gt; & lt; tr & gt; & lt; thtype & quot; lookup & qu
The template file code is as follows:
[Html]
| Post Code |
Position name |
Compilation quantity |
Secondary note |
Delete rows |
Search back
|
|
|
|
Delete
|
| Post Code |
Position name |
Compilation quantity |
Secondary note |
Delete rows |
Search back
|
|
|
|
Delete
|
An error occurs when you click Delete row after IE is running, but FireFox can be deleted normally. The error message of IE browser is as follows:
Syntax error, unrecognized expression: [href ^ = javascript:]
It is determined that Jquery compatibility is the problem:
Check the problematic code lines in the topic Js file:
If ($ btnDel. is ("[href ^ = javascript:]") {
Changed:
If ($ btnDel. is ('[href = "javascript: void (0)"]') {
The problem is solved.