我的網頁採取CSS屬性從用戶包括以下內容:如何使用的js
- 輸入型文本
- 按鈕
- 款
我想用戶輸入的CSS代碼在輸入字段中,然後當他點擊按鈕時,代碼必須應用到段落中。
示例: 用戶在輸入處輸入了color:red
。 他點擊了按鈕。 他輸入的代碼(顏色:紅色)應該在段落
應用我做了這段代碼來做到這一點,但它有一個問題,我認爲這是關於連接所以代碼。有人可以幫助我嗎?
這裏是我的代碼 - JS行數10
var Inpt = document.getElementById("Inpt"),
Par = document.getElementById("Par"),
Btn = document.getElementById("Btn"),
Val;
Btn.onclick = function() {
"use strict";
Val = Inpt.value;
Val = Val.split(":");
Par.style.Val[0] = Val[1];
};
<input type="text" id="Inpt">
<button id="Btn"> Apply</button>
<p id="Par">This Is The Paragraph</p>
'Par.style [瓦爾[0]' –